
body {
    padding: 0;
}

.menu_bg {
    animation: color_menu_bg 20s ease forwards;
}

@keyframes color_menu_bg {
    from {
        filter: grayscale(100%);
    }
    to {
        filter: grayscale(0%);
    }
}

#menu_wrapper {
    width: 100%;
}

#menu_wrapper .menu {
    display:flex;
    flex-direction: column;
    gap: 1em;
    position: relative;
    color: #000;
    overflow-y: auto;
    text-align: center;
    align-items: center;
}

#menu_wrapper #landing_page_header {
    display:flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#menu_wrapper #landing_page_header div {
    width: 100%;
    margin-bottom: 0.5em;
    line-height: 0;
    background: #fff7;
}

#menu_wrapper #landing_page_header img {
    width: 35em;
    max-width: 90vw;
    margin: 0.5em auto;
}

#menu_wrapper h1, #menu_wrapper h2 {
    text-transform: uppercase;
}

#menu_wrapper h2 {
    font-family: "Rubik Glitch", sans-serif;
    font-size: 1.5em;
    padding: 0.5em 1em;
    margin: 0;
    background: #fffd;
    color: #000;
}

#menu_wrapper nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3em 1em;
    box-sizing: border-box;
    padding: 3em;
    background: #fffd;
    font-size: 1.2em;
    text-transform: uppercase;
}

#menu_wrapper nav > a {
    display: flex;
    flex-basis: 30%;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    gap: 0.5em;
}

#menu_wrapper nav > a img, #menu_wrapper nav svg {
    width: 4em;
    height: 4em;
}

#menu_wrapper nav > a svg path, #menu_wrapper nav > a svg circle {
    transition: fill 0.8s ease-in-out;
    fill: #000;
}

#menu_wrapper nav > a:hover svg path, #menu_wrapper nav > a:hover svg circle {
    fill: #FE0000;
}

#menu_wrapper nav > a span {
    transition: color 0.8s ease-in-out;
}

#menu_wrapper nav > a:hover span {
    color: #FE0000;
}

#menu_wrapper nav > a#sponsors_anchor svg {
    font-size: 1.2em;
}

#socials {
    padding: 0.7em 1em;
    line-height: 0;
    background: #0009;
}

#menu_wrapper .partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
    margin-top: 2em;
    padding: 1em 1.5em;
    background: #fffa;
}

#menu_wrapper .partners .sponsor_group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
}

#menu_wrapper .partner {
    line-height: 0;
}

#menu_wrapper .partner img, #menu_wrapper .partner svg {
    width: 7em;
}

#menu_wrapper #copyright_wrapper {
    position: fixed;
    bottom: 0;
    right: 10%;
    padding: 1em;
    background: #fffa;
    font-size: 0.9em;
    text-align: justify;
}

#copyright_wrapper > * {
    margin: 0;
}

#copyright_wrapper a {
    font-weight: 900;
    transition: color 0.8s ease-in-out;
}

#copyright_wrapper a:hover {
    text-decoration: underline;
    color: #FE0000;
}

@media (max-width: 800px) {
    #menu_wrapper #landing_page_header img {
        width: 30em;
    }

    #menu_wrapper nav {
        grid-template-columns: repeat(2, 1fr);
        padding: 2em;
    }

    #menu_wrapper h2 {
        font-size: 1.3em;
    }
}

@media (min-width: 800px) and (max-height: 1000px) {
    #menu_wrapper #copyright_wrapper {
        position: static;
        text-align: center;
    }
}

@media (max-width: 800px) and (max-height: 1200px) {
    #menu_wrapper #copyright_wrapper {
        position: static;
        text-align: center;
    }
}
