* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1e1e1e, #2e2e2e);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.image-container img {
    animation: glow 2s infinite alternate ease-in;
    /* Animación de brillo suave */
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 14px rgba(70,255,61,0.3));
        transform: scale(1.02);
    }

    to {
        filter: drop-shadow(0 0 22px rgba(70,255,61,0.6));
        transform: scale(1.06);
    }
}