html{
    height: 100%;
}

*{
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth !important;
}

body{
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    align-items: center;
    width: 100%;
}

main{
    min-height: 87vh;
    width: 100%;
}

h1{
    font-size: clamp(20px, 2vw, 42px);
}

header{
    height: 13vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #222222;
}

footer{
    height: 5vh;
    display: flex;
    align-items: flex-end;
}

#home{
    background-image: url("home.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    text-align: center;
}

#menu{
    padding-top: 5vh;
    padding-bottom: 5vh;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 5%;
    background: hsla(0, 0%, 0%, 1);

    background: linear-gradient(0deg, hsla(0, 0%, 0%, 1) 0%, hsla(96, 5%, 19%, 1) 50%, hsla(0, 0%, 0%, 1) 100%);
    
    background: -moz-linear-gradient(0deg, hsla(0, 0%, 0%, 1) 0%, hsla(96, 5%, 19%, 1) 50%, hsla(0, 0%, 0%, 1) 100%);
    
    background: -webkit-linear-gradient(0deg, hsla(0, 0%, 0%, 1) 0%, hsla(96, 5%, 19%, 1) 50%, hsla(0, 0%, 0%, 1) 100%);
    
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#30332E", GradientType=1 );
    color: #FFFBFC;
}

#menu-heading{
    height: 5%;
}

#about{
    padding-top: 5vh;
    text-align: center;
    background-color: #EFF6EE;
}
#topheader{
    font-family: 'Borel', serif;
    height: 8vh;
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFBFC;
    position: relative;
}

#topheader > div{
    display: flex;
    gap: 1vw;
}
#topheader > div > h2{
    height: clamp(10px, 1.6vw, 32px);
}
#one{
    height: clamp(20px, 2vw, 42px);

}

header > nav{
    display: flex;
    align-items: center;
    height: 5vh;
    width: 100%;
    gap: 15vw;
    justify-content: center;
    color: #FFFBFC;
}

a{
    list-style-type: none;
    color: white;
    text-decoration: none;
    font-size: clamp(12px, 1vw, 18px);
}

img{
    height: 100%;
    width: 100%;
}

#map{
    height: clamp(150px,25vw, 800px);
    border-radius: 5px;
    border: solid black 2px;
}

#subout{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 3vw;
    padding-top: 3vw;
    padding-left: 10vw;
    padding-right: 10vw;
}

h2{
    font-size: clamp(10px, 1.6vw, 32px);
}

#subout h2{
    line-height: 2;
    font-size: clamp(12px, 1.8vw, 24px);
    padding-left: 10vw;
    padding-right: 10vw;
}

.menu-item{
    display: flex;
    justify-content: space-around;
    width: 100%;
}

#menu-items{
    font-family: 'Dancing Script', serif;
    width: 70%;
    height: 90%;
    display: flex;
    justify-content: space-around;
}

.price{
    display: flex;
    gap: 2vw;
}

#col1, #col2{
    width: max(50%, 300px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

@media (max-width: 720px) {
    #topheader{
        width: 85%;
    }
    #col1, #col2{
        height: 100%;
    }
    #subout{
        flex-direction: column;
    }
    #menu-items{
        flex-direction: column;
        align-items: center;
    }
    #subout h2{
        padding-left: 5vw;
        padding-right: 5vw;
    }
}


#address{
    padding-top: 15vh;
    padding-right: 50%;
}
#more{
    padding-top: 20vh;
}