
.contact .a {
    width: 100%;
    height: calc(min(500px, 100vw) / 0.75);
    background: black;
    text-align: center;
}

.contact img {
    width: 100%;
    max-width: 500px;
}

.contact .b {
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

.contact p {
    font-size: 19px;
}

@media (min-width:1100px) {
    .contact .c {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 1050px;
        margin: 0 auto;
        padding: 40px;
    }
    .contact .a {
        width: fit-content;
    }
    .contact img {
        width: 500px;
    }
}

.booking {
    background: white;
    margin: 20px auto;
    padding: 30px;
}

.booking > * {
    width: 100%;
}

.booking h2 {
    margin: 0;
}

.booking p {
    margin: 20px 0 5px 0;
}

.booking .a {
    color: red;
    float: right;
    margin: 0;
    width: fit-content;
}

.booking > input, .booking textarea, .booking button {
    font-size: inherit;
    box-sizing: border-box;
    padding: 10px;
    margin: 3px 0;
    outline: none;
    border: none;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
}

.booking button {
    cursor: pointer;
}

.booking textarea {
    resize: none;
    height: 150px;
}

.booking table {
    table-layout: fixed;
}

.booking td {
    width: min-content;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    padding: 2px;
}

@media (min-width:1000px){
    .booking {
        width: 650px;
    }
    .booking table {
        table-layout: auto;
    }
    .booking td {
        width: unset;
        padding: 5px;
        border-left: 1px solid black;
        border-bottom: 1px solid black;
    }
    .booking > input, .booking textarea, .booking button {
        border-left: 1px solid black;
        border-bottom: 1px solid black;
    }
}