/*--------IMPORT--------*/

@import url(header.css);
@import url(footer.css);

/*                    Variáveis                    */

:root{
    --fonte-principal: "Sofia Sans Extra Condensed", sans-serif;
    --cor-texto-preto: black;
    --cor-texto-branco: white;
    --cor-fundo: white;
    --cor-verde: #99ca00;
    --cor-laranja: #ff7e00;
}

body{
    background-color: var(--cor-texto-branco);
}

main{
    font-family: var(--fonte-principal);
}
