body{
    font-family: sans-serif;
}
nav{
    display: flex;
    justify-content: space-between;
    align-content: center;
    background-color: rgb(255, 255, 255);
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

}
#nav-links{
    display: flex;
    width: 45%;
    justify-content: space-evenly;
    
}
.link{
    text-decoration: none;
    color: White;
    background-color: grey;
    width: 20%;
    padding: 5px;            
    align-self: center;
    margin: 5px;
    text-align: center;
    border-radius: 10px;
    
}
.dropdown{
    width: 20%;            
    display: flex;
    justify-content: center;
    align-items: center;
}
.dropdown-items{
    display: none;
    flex-direction: column;
    width: 100%;
}
.dropdown:hover .dropdown-items{
    display: flex;
    position: absolute;
    top: 50px;
    width: 25%;
    z-index: 1;
    
} 
h2{
    text-align: center;
    background-color: #bdb8b88c;
    line-height: 50px;
    border: 1px solid black;
    border-radius: 20px;
}
#menu-prev{
    display: flex;
    justify-content:center;
}
.menu-prev-item{
    width: 30%;
    padding: 20px;
    text-align: center;
}
#gallery{
    display: flex;
    justify-content: space-around;
    padding: 10px;
    flex-wrap: wrap;
}
#gallery img{
    border-radius: 20px;
    margin: 20px;
}