@import url('css/reset.css');
@import url('https://fonts.googleapis.com/css2?family=Orienta&family=Ubuntu:wght@300;400;500&display=swap');
@import url("css/header.css");
@import url("css/footer.css");

:root{
    font-size: 15px;
    --azul-escuro: #002B3B; 
    --verde: #67C0B9;
    --cinza: #707070;
    --branco: #fff;
}

html{
    font-family: "Ubuntu", sans-serif;
    scroll-behavior: smooth;
}

body{
    line-height: 1.25;
}

p{
    font-family: "Orienta", sans-serif;
    color: var(--cinza);
}

.container{
    width: 90%;
    margin: 0 auto;
}

strong{
    font-weight: bolder;
}

@media screen and (min-width: 993px) {
    
    .container{
        width: 85%;
        max-width: 1366px;
    }

}
