@font-face {
    font-family: Russo-One;
    src:
        url("./fonts/RussoOne-Regular.ttf") format("truetype"),
        url("./fonts/RussoOne-Regular.woff") format("woff"),
        url("./fonts/RussoOne-Regular.woff2") format("woff2");
}

/* Dark mode */
:root {
    --primary: #E59500;  
    --background: #08020E;
    --text-color: #F5F5F5;
}

/* Light mode */
/* @media (prefers-color-scheme: light) {
    :root {
        --primary: #E59500;  
    --background: #FAF5F0;
    --text-color: #2C2C2C;
    }
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial sans-serif;
    color: var(--text-color);
}

html, body {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: Russo-One, Aria, sans-serif;
    letter-spacing: .25em;
}

.main-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2;
}

.under-construction {
    font-size: clamp(1rem, 3vw, 18rem);
    margin-bottom: 2vh;
}


.axentra {
    text-align: center;
    font-size: 10vw;
    color: var(--primary);
    text-shadow: -0.4vw .4vw 0 var(--text-color);
    cursor: default;
    transition: all .3s ease;
}

.axentra:hover {
    transform: translateY(-0.5vh) translateX(.5vw);
    text-shadow:
            -1vw 1vw 0 var(--text-color)
    ;
}

.slogan {
    font-size: clamp(.75rem, 2vw, 18rem);
}

.stars {
    position: absolute;
    width: 200vw;
    height: 200vw;
    left: -50vw;
    background-image: url('./stars.webp');
    background-repeat: repeat; 
    animation: spinning 1000s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes spinning {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 768px) {
    .stars {
        animation: spinning 200s linear infinite;
    }
}
