:root{
    --primary-bg: #202020;
    --primary-yellow: #ffde59;
}

body, html {
    background-color: var(--primary-bg);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    scrollbar-width: thin;
}

.page-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    color: white;
    flex-direction: column;
    margin: 0 auto;
}

.menu-header{
    font-size: 25px;
    color: var(--primary-yellow);
}

hr{
    border: none;
    width: 100%;
    margin-left: 0px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.menu, .menu-row{
   color: white;  
   display: flex;
   flex-direction: column;
   gap: 30px;
   margin: 10px 0px;
}

.menu-row{
    flex-direction: row;
    width: 100%;
}

.menu-block {
    flex: 1;
}


.menu-item {
    margin: 5px /* upp och ner margin */ 0px /* höger vänster */;
    display: flex;
    justify-content: space-between;
}

.order-div{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-direction: column;
    color: var(--primary-yellow);
    align-items: center;
}

.order-button{
    margin: 10px;
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid var(--primary-yellow);
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.order-button:hover{
    scale: 1.05;
    transition: 0.3s ease;
}

.different-menus{
    color: var(--primary-yellow);
    display: flex;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
}

@media (max-width: 768px){
    .menu-row{
        flex-direction: column;
    }
}