header{
    display: flex;
    width: 100%;
    margin: auto;
    flex-direction: column;
    align-items: center;
}

.logo{
    width: 100%;
    padding-top: 50px;
}

.logo a{
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    width: 30rem;
    height: auto;
    margin: auto;
}

.descricao{
    font-size: 1.4rem;
    color: var(--background);
    text-decoration: none;
    letter-spacing: .1rem;
}

@media (max-width: 768px) {
    .logo img{
        width: 25rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

}