* {
    box-sizing: border-box;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background-color: #f8ebdd;
    padding: 40px;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.logo {
    width: 120px;
}

.heading {
    font-size: 24px;
    color: #000;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .heading br {
        display: none;
    }
}

.language-selector {
    display: flex;
    background-color: #f0d5b7;
    list-style: none;
    padding: 8px 12px;
    border-radius: 100px;
}

.language-selector a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: unset;
    text-decoration: none;
    padding: 3px 16px 5px 14px;
}

.language-selector a[aria-selected="true"] {
    background-color: #fabd74;
    border-radius: 100px;
}

.language-selector a img {
    width: auto;
    height: 16px;
}

.language-selector a span {
    margin-top: 2px;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;;
    gap: 20px;
    width: 85vw;
    max-width: 1200px;
}

.menu[hidden] {
    display: none;
}

.menu img {
    max-width: 100%;
}

@media screen and (max-width: 470px) {
    .menu img {
        max-height: 90vh;
    }
}

::-webkit-scrollbar { 
    width: 4px; 
}

::-webkit-scrollbar-track { 
    border-style: hidden; 
    background-color: #f0d5b7; 
}

::-webkit-scrollbar-thumb { 
    border-radius: 0px; 
    background-color: #57a8a9; 
}