:root {
    /* Fonts */
    /* Regular */
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
    /* Bold */
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: normal;

    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
    /* Extrabold */
    font-family: "poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    /* Black */
    font-family: "poppins", sans-serif;
    font-weight: 900;
    font-style: normal;

    /* Font Size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Border Radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;

    /* Colors */
    --strawberry-red: #fb3640ff;
    --muted-teal: #7a9e7eff;
    --white-smoke: #f4f2f3ff;
    --deep-mocha: #362c28ff;
    --turf-green: #04724dff;

    /* Site max-width */
    --site-max-width: 1300px;

    /* Line height Body */
    --line-height-body: 1.5;

}

img:not(.sidebar-img, .nav-logo) {
    width: 200px;
}

.menu-section {
    min-height: 100vh;
    margin: 5em 0;
}


.menu-section {
    display: flex;
    justify-content: center;

}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 5rem 0 5rem;
}

.menu-class {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    background-color: var(--white-smoke);
    border-radius: var(--border-radius-s);
}

.menu-class h2 {
    font-size: var(--font-size-xxl);
    font-family: "ltc-goudy-heavyface-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--turf-green);
    text-align: center;
    background-color: var(--white-smoke);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--muted-teal);
    padding: .5rem 0;
    text-decoration: underline;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
    color: var(--deep-mocha);
    padding: 10px;
    background-color: var(--white-smoke);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--muted-teal);
    gap: 1rem;
}

@media (max-width: 500px) {
    .open-sidebar-button,
    .close-sidebar-button {
        display: block;
    }
}