@font-face {
    font-family: 'Neo';
    src: url('/assets/neosans.woff2') format('woff2');
}
body, html{
    display: flex;
    flex-direction: column;
    margin: 0;
    border: 0;
    padding: 0;
    font-family: 'Neo';
    scroll-behavior: smooth;
    min-height: 100vh;
}
a{
    text-decoration: none;
    color: black;
}
header{
    display: flex;
    position: sticky;
    top: 0;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: white;
    z-index: 1;
}
#headerLogo{
    margin-left: 40px;
    width: 160px;
    height: 40px;
}
#headerButtons{
    display: flex;
    margin-left: auto;
    margin-right: 40px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.buttons{
    text-decoration: none;
    color: #de0000;
    font-size: 20px;
    transition: 0.2s;
}
.buttons:hover{
    color: #8e0000;
    transform: scale(1.1);

}
.red{
    margin: 0;
    padding: 0;
    color: red;
}
.sobreTitulo{
    text-align: center;
}
.sobreTexto{
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    width: 50%;
    text-align: center;
}
main{
    flex: 1;
}
footer {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}
footer p{
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 800px){
   #headerLogo{
        margin-left: 20px;
        width: 100px;
        height: 25px;
   }
   #headerButtons{
        margin-right: 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        height: 100%;
    }
    .buttons{
        font-size: 14px;
    }
}