body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.logo {
    max-width: 90%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

h1 {
    margin-top: 20px;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h2 {
    margin-top: 40px;
    font-size: clamp(1.2rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.gif {
    max-width: 40%;
    height: auto;
    margin-top: 20px;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 768px) {
    .gif {
        max-width: 60%;
    }
}

@media (max-width: 480px) {
    .gif {
        max-width: 80%;
    }
}
