body {
    background-image: url("media/heitor-blink.gif");
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.heitor-img {
    max-width: 90%;
    width: 500px;
    height: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
}

.enter-link {
    font-family: "Special Elite", system-ui;
    font-size: 2rem;
    color: #E0FBFC;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.enter-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        gap: 1.5rem;
        padding: 20px;
    }
    
    .heitor-img {
        width: 100%;
        max-width: 400px;
    }
    
    .enter-link {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    body {
        padding: 10px;
    }
    
    .container {
        gap: 1.25rem;
        padding: 15px;
    }
    
    .heitor-img {
        width: 100%;
        max-width: 350px;
    }
    
    .enter-link {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 8px;
    }
    
    .container {
        gap: 1rem;
        padding: 10px;
    }
    
    .heitor-img {
        width: 100%;
        max-width: 280px;
        min-width: 200px;
    }
    
    .enter-link {
        font-size: 1.15rem;
        padding: 0.5rem 1rem;
    }
}