:root {
    /* Tema padrão */
    --principal: #FF0800;
    --background: #000000;
    --contorno: #151515;
    --font: #F5F5F5;
}

@import url('//cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css');

@font-face {
    font-family: "GregorianFLF";
    src: url('../font/GregorianFLF.ttf');
}

a {
    color: inherit;
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--font);
    font-size: 17px;
    font-family: Hack, monospace;
    background-image: url('../images/background.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
}

.intro {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    top: 0;
    left: 0;
    font-size: 1rem;
    padding-inline: 5%;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid var(--contorno);
}

.logotexto {
    justify-self: start;
}

.logotexto h1{
    font-family: GregorianFLF;
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    font-size: 2.7rem;
}

nav {
    justify-self: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    padding: 20px;
    padding-inline: 20px;
    border-bottom: 2px solid #ffffff00;
    transition: all 0.1s ease-out;
}

nav ul li:hover {
    color: var(--principal);
    border-bottom: 2px solid var(--principal);
    transition: all 0.1s ease-out;
}

.btn-discord {
    justify-self: end;
}

.btn-discord img {
    width: 30px;
    height: 30px;
} 

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 40px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: rgba(21, 21, 21, 0.95);
    border-top: 1px solid var(--contorno);
}

.widget {
    position: relative;
    width: 100%;
    white-space: nowrap;
    font-size: 0.95rem;
    color: var(--font);
    transform: translateX(100%);
    animation: scroll 35s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}