html {
    scroll-behavior: smooth;
}
body {
    margin: 0 auto;
    text-align: center;
}

#dinr {
    width: 30vw; 
    height: 15vh; 
    object-fit: contain;
}

#date, #date_meal{
    margin-right: 5vw;
}

#header {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    color: white;
    background-color: brown;
    height: 12vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.first_page {
    background: 
    linear-gradient(
      rgba(80, 8, 8, 0.8),
      rgba(80, 8, 8, 0.8)
    ),
    url(/images/stern.jpeg);
    background-size: cover;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.review_page {
    background: 
    linear-gradient(
      rgba(20, 0, 0, 0.63),
      rgba(20, 0, 0, 0.63)
    ),
    url(/images/review_page.webp);
    background-size: cover;
    
    display: flex;
    color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


section {
    height: 100vh;
    scroll-snap-align: start;
    justify-content: center;
    align-items: center;

}

.container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 2; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: brown; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 12vh; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    font-size: 20px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidenav, .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
  }

#open_margin {
    margin-left: 5vh;
}