/*=========================================
        RESET GLOBAL
=========================================*/

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


html{

    scroll-behavior:smooth;
    overflow-x:hidden;

}


body{

    font-family:Arial, Helvetica, sans-serif;

    background:var(--bg-primary);

    color:var(--text-primary);

    overflow-x:hidden;

}



/*=========================================
            IMÁGENES
=========================================*/

img{

    max-width:100%;
    display:block;

}



/*=========================================
            LINKS
=========================================*/

a{

    text-decoration:none;

    color:inherit;

}



/*=========================================
            LISTAS
=========================================*/

ul{

    list-style:none;

}



/*=========================================
            BOTONES
=========================================*/

button{

    cursor:pointer;

    font-family:inherit;

}