
/*Reset CSS*/

/*chame o arquivo dentro da tag head da seguinte maneira em Wordpress (dinamicamente) 

<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/reset.css">     */


*, 
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    height: 100vh;
    font-size: 100%;
    list-style: none;
}

ul, li {
    list-style: none;
}

.container {
    width: 100%;
    margin: 0 auto;
}