body {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
}

header {
    position: relative;
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),url('images/hero.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}
header img {
    width: 120px;
    height: auto;
    padding-bottom: 2rem;
}
header h1 {
    font-size: 250%;
    letter-spacing: 4px;
    font-weight: 700;
}
header h2, header h3 {
    font-size: 150%;
    letter-spacing: 2px;
    font-weight: 700;
}
header #menu-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #8d275f;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: .3rem;
    text-transform: uppercase;
    font-weight: 700;
    min-width: 158px;
    padding: 0 1rem;
    height: 50px;
    border-bottom: .5rem solid #fff;
    margin: 0 auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    margin-top: 2rem;
}
header h3 a {
    color: #fff;
    text-decoration: none;
}

#menu-button,
#menu-button:hover,
#menu-button:visited {
    color: #fff;
    text-decoration: none;
}

h1, h2, h3 {
    margin: 0;
    padding: 5px;
    text-transform: uppercase;
}

section {
    padding: 5rem 0;
}
#content {
    background-color: #7b184e;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    gap: 3rem;
    padding: 1rem;
}
#content #opening-hours {
    width: 100%;
    line-break: strict;
}
#content #days {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 2rem;
}
/* helper classes */
.bold {
    font-weight: 700;
}

#opening-hours {
    gap: 5rem;
}
#opening-hours h2 {
    padding-bottom: 4rem;
}

#menu {
    background-color: #f8f8f8;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

#menu-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 5rem;
    text-align: center;
}
.hidden-mobile {
    display: block;
}

@media (max-width: 1500px) {
    .hidden-mobile {
        display: none;
    }
    #content #days {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #menu-items {
        display: flex;
        flex-direction: column;
    }
}