body{
    background-color: transparent;
    background-image: url(outdoor-seating2.webp);
    background-repeat: no-repeat;
    background-size: 100%;
 }
#contact{
    margin-left: 1%;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    }
    .contact-container{
    display: flex;
    justify-content: space-between;
    }
    #contact form{
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 600px
    }
    #webhook label {
        margin: 10px 0 5px;
    }
    input:invalid{
    background: rgba(255, 0, 0, 0.21);
    }
    input:valid{
        background: rgba(0, 128, 0, 0.226);
    }
    
    #contact input::placeholder, #contact textarea::placeholder{
        color:rgb(193, 184, 184);
        font-size: medium;
    }
    #webhook input, #webhook textarea {
        font-size: 24px;
        box-sizing: border-box;
        margin-top: 5px;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    #webhook button {
        padding: 10px;
        background-color: rgb(97, 97, 97);
        color: white;
        border: none;
        cursor: pointer;
    }
    #contact button:hover{
        background-color: rgb(155, 154, 154);
    }
    .map{
        flex: 1;
        max-width: 600px;
        margin-right: 1%;
        gap: 2%;
    }
    .map iframe {
        width: 100%;
        height: 430px;
        border: 0;
    }

    @media screen and (max-width: 600px) {
        body {
            background-image: url(reception.webp);
            background-repeat: repeat;
            background-size: cover; 
            background-position: center top; 
            min-height: 100vh;
        }
        .contact-container{
            display: block;
            justify-content: space-between;
            }
            #contact h2{
                margin-left: 5%;
                margin-right: 5%;
                font-size: 19px;
            }
            #contact button{
                width: 100%;
            }
            #contact form{
            display: block;
            flex-wrap: wrap;
            flex-direction: column;
            max-width: 100%;
            margin-right: 5%;
            margin-left: 5%;
            margin-top: 5%;
            }
            .map{
            display: block;
            flex-wrap: wrap;
            max-width: 100%;
            margin-right: 5%;
            margin-left: 5%;
            margin-top: 5%;
            }
            .map iframe {
            width: 100%;
            height: 300px;
            }
    }
    @media screen and (min-width: 600px) and (max-width: 1024px) {
        body {
            background-image: url(reception.webp);
            background-repeat: repeat;
            background-size: cover; 
            background-position: center top; 
            min-height: 100vh;
        }
        .contact-container{
            display: block;
            justify-content: space-between;
        }
        #contact h2{
            margin-left: 5%;
            margin-right: 5%;
            font-size: 24px;
        }
        #contact button{
            width: 100%;
        }
        #contact form{
            display: block;
            flex-wrap: wrap;
            flex-direction: column;
            max-width: 100%;
            margin-right: 5%;
            margin-left: 5%;
            margin-top: 5%;
        }
        .map{
        display: block;
        flex-wrap: wrap;
        max-width: 100%;
        margin-right: 5%;
        margin-left: 5%;
        margin-top: 5%;
        }
        .map iframe {
        width: 100%;
        height: 300px;
        }
    }