:root{
    --vermelho :#d4133d;
    --amarelo :#FE9701;
    --azul :#124095;
    --verde :#00AB4F;
    --branco :#FFFFFF;
    --preto :rgb(19, 19, 19);
    --load: #e6e6e6;
    --font-min: 12px;
    --font-max: 14px;
    --min-fontSize: 20px ;
    --mdl-fontSize: 30px ;
    --max-fontSize: 70px ;
    --border: 10px;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-margin-top: 180px;
}

body::-webkit-scrollbar{
	width: 5px;
}
body::-webkit-scrollbar-track{
	background: var(--branco);
}
body::-webkit-scrollbar-thumb{
	background: var(--azul);
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Roboto';
}

p,span,a,ul,li{
    font-family: "Montserrat";
    text-decoration: none;
    list-style: none;
}

.content{
    width: 100%;
    height: 100%;
    max-width: 1210px;
    /* background-color: blue; */
}