*,
*:before,
*:after{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    overflow: hidden;
}
main {
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
}

input::placeholder {
    color: #bc3333;
}

/* Form styles */
.reservation{
    position: absolute;
    top: 0;
    font-family: "Overpass", serif;
    margin-top: 30%;
}
.resContainer{
    width: 26.875;
    height: 31.25rem;
    background-color: #bc3333; 
    overflow: hidden;
    color: #fff;
    font-size: 0.938rem;
}
.oval{
    background-color: #bc3333; 
    width: 26.875rem;
    height: 3rem;
    border-radius: 50% 50% 0 0;
    overflow: hidden;
}
.sectionBanner{
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0% 20% 5%;
}

.reveal{
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin-left: 10%;
}

.submitBtn{
    margin-left: 20%;
    margin-top: 4%;
    width: 40%;
    height: 30%;
    background-color: #bc3333; 
    color: #fff;
    font-size: 1.5rem;
}
label{
    width: 100vw;
    margin: 2%;
}

input, select{
    width: 75%;
    padding: 0.5rem;
    border: solid 0.125rem rgba(0, 0, 0, 0);
    border-radius: 0.6rem;
    margin-top: 2%;
}

textarea{
    width: 75%;
    border: solid 0.125rem rgba(0, 0, 0, 0);
    border-radius: 0.6rem;
    margin-top: 2%;
}

.instructions{
    font-size: 1.1rem;
}


@media (min-width: 431px) {
    #splash,#landing,#restaurantPage,#restaurant{
        width: 100vw;
        height: 100vh;
        background-color: #2b8e32;
    } 
    .reservation{
        position: absolute;
        top: 0;
        font-family: "Overpass", serif;
        margin-top: 10%;
    }
    .resContainer{
        width: 40vw;
        margin-left: 30%;
    }
    .oval{
        width: 40vw;
        height: 3rem;
        margin-left: 30%;
    }
    .sectionBanner{
        text-align: center;
        margin-bottom: 1%;
    }

    input, select{
        width: 30vw;
        margin-top: 0;
    }
    
    textarea{
        width: 30vw;
        margin-top: 0;
    }
    label{
        margin: 1vh;
    }
}



