* {
    margin: 0;
    padding: 0;
}

header {
    background-color: black;
    height: 20vh;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#logo {
    height: 30vh;
    width: auto;
    margin-top: -5vh;
}

a{
    text-decoration: none;
    color: black;
    transition: transform 0.3s ease;
}

a:hover{
    transform: scale(1.05);
}

main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secao-principal{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 0.2fr 2fr 0.2fr;
    grid-template-areas: ". . ."
    ". anuncio ."
    ". . .";
}

.titulo{
    font-size: 30px;
    background-color: rgb(0, 0, 0);
    width: 90%;
    text-align: center;
    border-radius: 10px;
    color: white;
    font-family: 'Josefin Sans', sans-serif;
    padding-top: 5px;
}

.anuncio{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-area: anuncio;
    border: 3px solid black;
    border-radius: 10px;
    width: auto;
    height: auto;
    padding: 20px;
    gap: 20px;
}

.titulo-anuncio{
    font-size: 20px;
    background-color: rgb(0, 0, 0);
    width: auto;
    text-align: center;
    border-radius: 10px;
    color: white;
    font-family: 'Josefin Sans', sans-serif;
    padding-top: 5px;
}

p, .link-continuar{
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
}

.ultimo-p{
    border-bottom: 2px solid grey;
    padding-bottom: 10px;
}

.link-continuar{
    text-decoration: underline;
    color: rgb(0, 82, 141);
}

.link-continuar:hover{
    color: rgb(0, 178, 178);
}

#container_footer {
    background-color: black;
    height: 35vh;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-template-rows: 100%;
    justify-content: space-evenly;
    margin-top: 30px;
}

#logo_baixo {
    height: 30vh;
    margin-bottom: -5vh;
}

.div_footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon {
    height: 3vh;
    margin-right: 20px;
}

.icon-div{
    display: flex;
    margin-top: 30px;
}

.texto_footer {
    color: white;
}