@font-face {
    font-family: "SpecialFont";
    src: url("../font/GrenzeGotisch-VariableFont_wght.ttf");
}

@font-face {
    font-family: "MonoFont";
    src: url("../font/RobotoMono-VariableFont_wght.ttf");
}

@font-face {
    font-family: "MainFont";
    src: url("../font/NunitoSans-VariableFont.ttf");
}

:root {
    --main-text-color: #FFFFFF;
    --disabled-text-color: #A5A5A5;
    --special-text-color: #a32015;
    --highlight-text-color: #fffe86;
    --title-background-color: #010111;
    --main-background-color: #212121;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100vh;
    font-family: 'MainFont', monospace;
}

body {
    font-family: 'MainFont', monospace;
    font-size: 1rem;
    background-color: var(--main-background-color);
    color: var(--main-text-color);
    min-height: 100vh;
    margin: 0 auto;
}

nav {
    background-color: var(--main-background-color);
}

nav ul {
    align-self: center;
    justify-self: center;
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1280px;
}

nav li {
    height: 3rem;
}

nav a {
    height: 100%;
    padding: 0 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--main-text-color);
}

nav a:hover {
    color: var(--highlight-text-color);
}

main {
    align-self: center;
    justify-self: center;
    padding: 2rem;
    max-width: 1280px;
}

footer {
    align-self: center;
    justify-self: center;
    padding: 1rem;
    max-width: 1280px;
}

footer a {
    text-decoration: none;
}

footer p {
    font-family: 'MainFont', monospace;
    font-size: 0.75rem;
    color: var(--main-text-color);
}

footer p:hover {
    color: var(--highlight-text-color);
}

.ros-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.ros-sidebar li {
    width: 100%;
}

.ros-sidebar a {
    width: 100%;
}

.ros-menu-button {
    display: none;
}

.ros-flex-column-flow {
    display: flex;
    flex-flow: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.ros-mobile-menu:hover {
    box-shadow: 0rem 0.0625rem var(--highlight-text-color), 0rem 0.0625rem var(--highlight-text-color) inset;
}

.ros-hover-icon:hover {
    filter: brightness(0) saturate(100%) invert(100%) sepia(11%) saturate(7439%) hue-rotate(358deg) brightness(100%) contrast(99%);
}

.ros-logo {
    max-width: 12rem;
}

.ros-announcement {
    font-family: 'SpecialFont', monospace;
    font-size: 3rem;
    color: var(--special-text-color);
}

.ros-title {
    font-family: 'MainFont', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--highlight-text-color);
}

.ros-menu {
    font-family: 'MainFont', monospace;
    font-size: 0.885rem;
    color: var(--main-text-color);
}

.ros-error-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--special-text-color);
}

.ros-error-text {
    font-size: 1.5rem;
    color: var(---highlight-text-color);
}

.ros-menu-left {
    margin-left: auto;
}

@media(max-width: 768px) {
    .ros-hideOnMobile {
        display: none;
    }

    nav ul {
        justify-content: flex-end;
    }

    nav li:first-child {
        margin-right: auto;
    }

    .ros-menu-button {
        display: block;
    }
}