body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #b4d1fd;
    font-family: 'Gluten', cursive;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    max-width: 1200px;
    justify-content: space-between;
}

img {
    width: 30vw;
    height: auto;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: auto 0; /* Centraliza verticalmente */
}

nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin-bottom: 40px; /* Adiciona espaço entre o menu e a imagem */
}

.about-link {
    color: #333;
    text-decoration: none;
    font-family: 'Gluten', cursive;
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.about-link:hover {
    color: #fd4800;
    transform: scale(1.1);
}

footer {
    padding: 5px 0;
    font-family: 'Gluten', cursive;
    font-weight: 400;
    font-size: 0.8rem;
    color: #333;
    margin-top: 40px; /* Aumenta o espaço entre a imagem e o footer */
}

.creator-link {
    color: #fd4800;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}

.creator-link:hover {
    transform: scale(1.1rem);
    color: #fd4800; /* Mantém a cor mesmo após visitado */
}

.creator-link:visited {
    color: #fd4800; /* Mantém a cor mesmo após visitado */
}

@media (max-width: 768px) {
    img {
        width: 60vw;
    }
}

@media (max-width: 480px) {
    img {
        width: 80vw;
    }
} 