@charset "UTF-8";

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: dimgray;
}

header {
    background-color: white;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 10px;
}

nav {
    background-color: rgb(125, 125, 125);
    padding: 5px;
    box-shadow: 3px 4px 12px 0px rgba(0, 0, 0, 0.285);
    border-radius: 10px;
}

nav ul {
    list-style-type: none;
    padding: 1px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
}

nav ul a:hover{
    text-decoration: underline;
}

main{
    background-color: white;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 10px;
}

#destaques  article a{
    text-decoration: none;
    color: black;
    background-color: lightgray;
}

#destaques article{
    width: 300px;
    background-color: lightgray;
    padding: 10px;
    border-radius: 10px 0px;
    margin: 10px;
    box-shadow: 3px 4px 12px 0px rgba(0, 0, 0, 0.233);
}

#destaques img{
    width: 300px;
    border-radius: 10px;
}

#destaques > article > a > aside > p{
    background-color: rgb(176, 176, 176);
    padding: 10px;
    border-radius: 10px;
}

#noticias, #destaques section > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#noticias article {
    background-color: lightgray;
    width: 300px;
    padding: 10px;
    border-radius: 10px 10px 0 10px;
    margin: 10px;
    box-shadow: 3px 4px 12px 0px rgba(0, 0, 0, 0.233);
}

#noticias article > aside{
    background-color: rgb(152, 152, 152);
    padding: 2px;
    text-align: center;
    border-radius: 10px;
}

footer{
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

footer > p{
    margin: 0px;
}

/* #bola{
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 50%;
    background-color: white;
} */

@media screen and (max-width: 708px){
    #destaques article, #noticias article{
        width: 100%;
    }

    #destaques article img, #noticias article img{
        width: 100%;
    }
}