*{
    margin: 0;
    padding: 0;
}
#app{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}
header{
    width: 100%;
    height: 80px;
    position: absolute;
    background-color: #FF5937;
}
.area-central{
    flex-grow: 4;
    color: white;
    min-height: 100vh;
    width: 100%;
    position: relative;
    margin-top: 150px;
}
.area-lateral-direita{
    max-width: 60%;
    min-width: 20%;
    margin-top: 150px;
}
a{
    text-decoration: none;
}
.row{
    margin: 0;
    padding: 0;
}
select {
    outline: none;
}
#anuncios-programados{
    display: none;
}
footer{
    width: 100%;
    padding: 30px 0;
    padding-bottom: 90px;
    background-color: rgba(0, 0, 0, 0.801);
    display: flex;
    justify-content: center;
    align-items:self-start;
}
footer p{
    color: white;
}
.tamanho-banner img{
    width: 300px;
    height: 250px;
}
@media (max-width: 1000px)
{
    .area-lateral-direita{
        display: none;
    }
    .area-central{
        margin-left: 0px;
        margin-top: 80px;
    }
}
