body {
    color: white;
    background-color: black;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

header img {
    width: 30vw;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin-top: 5%;
}

h1 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

.center {
    text-align: center;
}

.outras-noticias-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 90%;
    max-width: 1040px;
    margin: 0 auto;
}

.outras-noticias-1 h3 a {
    text-decoration: none;
    color: white;
}

.outras-noticias-1-single {
    cursor: pointer;
    width: 90%;
    max-width: 500px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border: 2px solid white;
    background-color: #222;
    position: relative;
    overflow: hidden;    
    box-sizing: border-box;
}

.outras-noticias-1-single h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 10px;
    color: white;
    width: 100%;
    height: 60px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 3px #000;
    box-sizing: border-box;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    height: auto;
    padding: 20px;
    color: white;
    text-align: center;
}

footer img {
    width: 25px;
    height: 25px;
    display: block;
    margin: 40px auto 5px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: fuchsia;
}

footer p {
    margin: 2px 0;
}

footer .copyright {
    margin-top: 10px;
    font-family: 'Times New Roman', Times, serif;
}

/* Ajustes para telas menores */
@media (max-width: 600px) {
    header img {
        width: 40vw;
    }

    .outras-noticias-1-single {
        flex: 1 1 100%;
        max-width: 100%;
        height: 180px;
    }

    footer img {
        width: 20px;
        height: 20px;
        margin-top: 20px;
    }
}
