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: 5% auto 0;
    display: block;
}

.center {
    text-align: center;
}

h1 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

a{
    color: fuchsia;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    padding: 20px;
    height: auto;
    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;
}

/* 🔁 Media Query para dispositivos pequenos */
@media (max-width: 600px) {
    header img {
        width: 40vw;
    }

    footer img {
        width: 20px;
        height: 20px;
        margin-top: 20px;
    }
}
