@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

main {
    padding: 20px;
}

body{
    overflow-x: hidden;
}
button {
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin-bottom: 20px;
}

button h3 {
    margin: 0;
}

#noticias {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.noticia {
    display: flex;
    background-color: white;
    border: 1px solid #ccc;
    padding: 15px;
    align-items: center;
    gap: 15px;
}

.noticia .fotoNoticia {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.noticia div {
    display: flex;
    flex-direction: column;
}

.noticia div h4 {
    margin: 0;
    font-weight: bold;
}

.noticia div p {
    margin: 2px 0;
    font-size: 1rem;
}
.noticia #divNomeEstrelas{
    display: flex; 
    align-items: center;
    justify-content: space-between;
}

.noticia #divNomeEstrelas img{
    height: 30px;

}

#filtros {
    position: absolute;
    top: 0;
    left: -400px;

    background: #ffffff;
    border: 3px solid black;
    width: 25vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
#filtros span{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}
#filtros span div{
    display: flex;
    
}

#filtros button{
    background: #e0dede;
    width: 90%;
    padding: 10px;
}

#botaoFechar {
    background: red;
}

