/* ==========================================
   RESET
========================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

/* ==========================================
   BODY
========================================== */

body{

    font-family:var(--font-family);

    background:var(--background);

    color:var(--text);

    min-height:100vh;

    line-height:1.6;

}

/* ==========================================
   LINKS
========================================== */

a{

    text-decoration:none;

    color:inherit;

}

/* ==========================================
   IMAGENS
========================================== */

img{

    display:block;

    max-width:100%;

}

/* ==========================================
   LISTAS
========================================== */

ul{

    list-style:none;

}

/* ==========================================
   BOTÕES
========================================== */

button{

    font-family:inherit;

}

/* ==========================================
   INPUTS
========================================== */

input,
textarea,
select{

    font-family:inherit;

}