body {
    color: white;
    background-color: black;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

/* Centraliza o conteúdo */
.center {
    text-align: center;
}

/* Imagem do cabeçalho (avatar ou logo) */
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;
}

/* Imagem principal com responsividade */
.imagem img {
    width: 90%;
    max-width: 800px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Rodapé responsivo */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    margin: 20px 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;
}

/* Media queries para ajustar em telas menores */
@media (max-width: 600px) {
    header img {
        width: 40vw;
    }

    .imagem img {
        width: 95%;
    }

    footer img {
        width: 20px;
        height: 20px;
    }
}
