:root{
    --fundo-github: #0d1117;
    --texto-github: #9198a1;
    --ancora-github: #4493f8;
    --carregamento-interagir: 9999;
}

@font-face {
    font-family: KHTitle;
    src: url(../fonts/KHTitle.woff2);
}

@font-face {
    font-family: KHMenu;
    src: url(../fonts/KHMenu.woff2);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: KHMenu;
    src: url(../fonts/KHMenuBold.woff2) format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: KHMenu;
    src: url(../fonts/KHMenuItalic.woff2) format('woff2');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: KHGummi;
    src: url(../fonts/KHGummi.woff2) format('woff2');
    font-weight: normal;
    font-style: normal;
}

@keyframes backgroundAnimado{
    from {
        background-position: 0, 0;
    }
    to{
        background-position: 100vw;
    }
}

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

@keyframes aumentar{
    0%{
        scale: 1;
    }
    50%{
        scale: 1.03;
    }
    100%{
        scale: 1;
    }
}

body{
    min-width: 100vw;
    overflow-x: hidden;
    background-color: #131320;
    background: url(../imgs/ReMix_Style_Wallpaper.webp);
    background-size: 100vw, 100vh;
    animation: backgroundAnimado 60s linear infinite;
}

svg{
    fill: var(--texto-github);
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

#carregamento-wrap{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #131320;
    transition: opacity 1s, visibility 1s;
    z-index: var(--carregamento-interagir);
}

#img-carregamento{
    max-width: 140px;
    max-height: 140px;
}

.img-animacao{
    animation: girar 3s linear infinite;
}

.texto-animacao{
    animation: aumentar 3s linear infinite;
}

.carregamento-invisivel{
    opacity: 0;
    visibility: hidden;
}

.fundo-da-pagina{
    --carregamento-interagir: 0;
}

.body-sem-scroll{
    overflow: hidden;
}

.texto-carregamento{
    font-family: KHMenu;
    font-style: italic;
    color: white;
}

.header-containers{
    font-family: KHMenu;
    font-weight: bold;
    text-shadow:
    2px 2px 4px black;
}

.p-containers{
    font-family: KHMenu;
}

.card-background{
    background-color: var(--fundo-github);
}

.texto-gh{
    color: var(--texto-github);
}

.cor-ancora{
    color: var(--ancora-github);
}

.icons-xp{
    width: 38px;
    height: 38px;
}

.texto-janela{
    max-height: 508px;
    overflow-y: scroll;
}

.icons-overflow{
    max-height: 139px;
    overflow-y: scroll;
}

.skill-icons{
    transition: ease all 0.2s;
    cursor: help;
}

.skill-icons:hover{
    transform: scale(1.1);
}

.sem-cursor{
    cursor: default;
}

#nome-header{
    font-family: KHTitle;
    font-size: clamp(4rem, 8vw + 1rem, 8rem);
    text-shadow:
    5px 5px 5px black,
    -3px -3px 4px rgb(94, 94, 94);
}

#texto-rodape{
    font-family: KHGummi;
    text-shadow:
    2px 2px 4px black;
}