*{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
}

@media print {
    .no-print {
        display: none !important;
    }
}

#menu{
    width: 100vw;
    height: 40px;
    background-color: black;
    text-align: center;
}

#mainMenu{
    display: flex;   
    list-style: none; 
    gap: 80px;
    justify-content: center;
    margin-top: 0px;
    padding: 5px;
}

#mainMenu li{
    color: azure;
    cursor: pointer;
    padding: 5px 10px;
}
#mainMenu li:hover{
    color: black;
    cursor: pointer;
    background-color: orange;
    border-radius: 5px;
    padding: 5px 10px;
}

#headerSelector{
    position: fixed;
    position: fixed; /* Stays locked to the browser window */
    top: 50px;       /* You must define these to lock it down */
    left: 50px;
    width: 200px;
    height: 300px;
    background-color: blanchedalmond;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    z-index: 99999;
}

.headerSelectorShow{
    display: block;
}
.headerSelectorHide{
    display: none;
}
.activeH{
    display: block;
}
.inactiveH{
    display: none;
}

#menuContent{
    width: 145mm;
    height: 360mm;
    border: 1px solid lightgray;
    margin-left: auto;
    margin-right: auto;
}

p{
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: sienna;
}

h1{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 36px;
    margin-bottom: -12px;
    text-transform: uppercase;
}
h2{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    margin-top: 0px;
    text-transform: uppercase;
    color: #8c8c8c;
}


#dishSelector{
    position: fixed;
    position: fixed; /* Stays locked to the browser window */
    top: 50px;       /* You must define these to lock it down */
    left: 50px;
    width: 900px;
    height: 300px;
    background-color: blanchedalmond;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    z-index: 99999;
}

.listaDan{
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}