body {
    background-color: black;
    text-align: center;
}

h1 {
    color: white;
    font-size: 44px;
    text-shadow: gold 4px 0 10px;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    color: white;
}

h3 {
    color: white;
    border: 2px solid white;
    border-radius: 16px;
    padding: 16px;
    display: inline-block;
    word-break: normal;
    max-width: 300px;
    box-shadow: 0px 0px 10px 0px rgba(214, 224, 192, 0.9);
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

nav {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 8px;
    padding: 14px;
    border: none;
    background: none;
    cursor: pointer;
    height: 60px;
    transition: all 0.2s ease;
}

li::marker {
    color: white;
}

.nav-button.active {
    color: gold;
    transform: scale(1.1);
}

.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
    top: 40px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid gold;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

a.button {
    color: white;
    display: block;
    margin: 12px auto 30px auto;
    width: 250px;
    font-size: 26px;
    padding: 20px 24px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    background-color: orange;
    box-shadow: 0px 0px 40px 5px rgba(209, 152, 67, 0.39);

    transition: transform 0.3s ease;
}

a.adm {
    color: white;
    display: block;
    margin: 12px auto 30px auto;
    width: 250px;
    font-size: 26px;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    background-color: red;
    box-shadow: 0px 0px 40px 5px maroon;
    transition: transform 0.3s ease;
}

button:hover,
a.button:hover,
a.adm:hover {
    transform: scale(1.05);
}
