/* Mobile Design*/

@media (max-width: 768px) {
*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    background-color: white;
}
main {
    width: 100%;
    height: 90vh;
    margin: 0 auto;
}
object{
    height: 90vh;
}

.reservation{
    position: absolute;
    top: 15%;
    opacity: 0;
    width: 100%;
    font-family: "Roboto Condensed", serif;
}

input::placeholder{
    color:#4f4f4f;
}

.titleBanner{
    font-size: 10vw;
    font-weight: 600;
    margin-bottom: 3%;
}

.reservation h2{
    font-size: 7vw;
    margin-bottom: 3%;
}

.reservation p{
    font-size: 5vw;
    margin-bottom: 3%;
}

form label{
    font-size: 7vw;
}

form input{
    font-size: 6vw;
    background-color: rgb(236, 236, 236);
    height: 30%;
    outline: none;
    border: none;
    width: 60%; 
    box-sizing: border-box; 
    margin-bottom: 3%;
}

#inputPhone{
    width: 59%; 
} 

#inputDate{
    width: 64%; 
} 

#inputTime{
    width: 63%; 
    font-size: 6vw;
    margin-bottom: 3%;
} 

#inputGuest{
    width: 26%; 
    font-size: 6vw;
    margin-bottom: 3%;
} 

form textarea {
    font-size: 5vw;
    background-color: rgb(236, 236, 236);
    height: 30%;
    outline: none;
    border: none;
    width: 82%; 
    box-sizing: border-box;
    margin-top: 3%;
    margin-bottom: 3%;
}

#button{
    width: 70%;
    height: 9vh;
    border-radius: 4vw;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
}


/* ------------------------------------------Desktop Design--------------------------------------------- */
@media (min-width: 768px) {
    *,
    *:before,
    *:after {
        width: 100%;
        height: 100vh;
    }
    
    html {
        font-size: 16px;
       
    }
    
    body {
        margin: 0;
        padding: 0;
        text-align: center;
        overflow: hidden;
    }
    main {
        width: 100%;
        height: 100vh;
        margin: 0 auto;
    }
    object{
        height: 100vh;
    }

    
 .reservation{
    position: absolute;
    top: 15%;
    left: 40%;
    opacity: 0;
    width: 20%;
    height: 77vh;
    font-family: "Roboto Condensed", serif;
    
}

input::placeholder{
    color:#4f4f4f;
}

.titleBanner{
    font-size: 4vh;
    font-weight: 600;
    height: 10%;
}

.reservation h2{
    font-size: 3vh;
    height: 10%;
    margin-top: -4%;
}

#required{
    font-size: 2vh;
    margin-top: -7%;
    margin-bottom: 0%;
}

.reservation p{
    height: 5%;
    margin-bottom: 2vh;
}

form label{
    font-size: 3.5vh;
}

form input{
    background-color: rgb(236, 236, 236);
    outline: none;
    border: none;
    height: 70%;
    width: 70%; 
    font-size: 2.7vh;
    box-sizing: border-box; 
}

#inputPhone{
    width: 69%; 
    
} 

#inputDate{
    width: 75%; 
    
} 

#inputTime{
    font-size: 2.7vh;
    height: 70%;
    width: 73%;
} 

#inputGuest{
    font-size: 2.7vh;
    height: 70%;
    width: 30%;
} 

form textarea {
    background-color: rgb(236, 236, 236);
    outline: none;
    border: none;
    box-sizing: border-box;
    font-size: 2.7vh;
    height: 170%;
    width: 93%;
    margin-top: 2vh;
}

#button{
    margin-top: 10vh;
    height: 130%;
    width: 70%;
    border-radius: 1vh;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    
 }

}
