*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
}

header{

    background:#991b1b;
    color:white;

    text-align:center;

    padding:30px;

}

nav{

    background:#dc2626;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

    padding:15px;

}

nav a{

    color:white;
    text-decoration:none;
    font-weight:bold;

}

main{

    max-width:1400px;
    margin:auto;

}

.destaque{

    margin:20px;
    background:white;
    padding:20px;

}

.destaque img{

    width:100%;
    display:block;

}

.noticias{

    margin:20px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:20px;

}

.noticias article{

    background:#dbeafe;

    min-height:250px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-weight:bold;

    border-radius:10px;

}

footer{

    background:#991b1b;
    color:white;

    text-align:center;

    padding:30px;

}