* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    background: radial-gradient(circle, #000000, #0a1a30, #0b253f); /* Fondo con degradado oscuro */
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    position: relative;
}

.titulo {
    color: rgba(0, 255, 0, 0.6); 
    font-weight: bold;
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
    z-index: 10;
}

/* Estilo de las imágenes distribuidas alrededor de la página */
.image-container {
    position: absolute;
    margin: 30px;
}

/* Posicionamiento corregido para cada imagen */
/* Ballena 1 con Mariposa al lado */
.whale1 {
    top: 10%;
    left: 5%;
}

.butterfly1 {
    top: 15%; /* Cerca de la ballena */
    left: 15%; /* Ajustado a la derecha de la ballena */
}

/* Otras posiciones para balancear el diseño */
.whale2 {
    top: 50%;
    right: 5%;
}

.butterfly2 {
    bottom: 10%;
    right: 20%;
}

.animated-image {
    max-width: 250px;
    height: auto;
    border-radius: 0; /* Sin bordes redondeados */
    box-shadow: none; /* Sin sombra alrededor */
    transition: transform 0.3s ease;
}

    .animated-image:hover {
        transform: scale(1.1); /* Efecto de zoom al pasar el mouse */
    }

/* Media queries para pantallas más pequeñas */

/* Ajustar las imágenes para pantallas medianas (tablets) */
@media screen and (max-width: 768px) {
    .animated-image {
        max-width: 150px; /* Reduce el tamaño para tablets */
    }
}

/* Ajustar las imágenes para pantallas pequeñas (teléfonos) */
@media screen and (max-width: 480px) {
    .animated-image {
        max-width: 102px; /* Reduce el tamaño para teléfonos */
    }

    
}


/* Luces que salen de las imágenes */
.lights {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.light {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: floatUp 4s ease-in-out infinite;
    filter: blur(2px);
}

    .light:nth-child(1) {
        left: 20%;
        animation-delay: 0.5s;
    }

    .light:nth-child(2) {
        left: 50%;
        animation-delay: 1s;
    }

    .light:nth-child(3) {
        left: 80%;
        animation-delay: 1.5s;
    }

/* Animación de luces flotando hacia arriba */
@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

.background-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Luces verdes */
.background-light.green {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: rgba(0, 255, 0, 0.6); /* Verde visible */
    border-radius: 50%;
    animation: floatBackground 6s ease-in-out infinite;
    filter: blur(5px);
}

/* Luces amarillas */
.background-light.yellow {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 0, 0.6); /* Amarillo visible */
    border-radius: 50%;
    animation: floatBackground 6s ease-in-out infinite;
    filter: blur(5px);
}

/* Posiciones de las luces con retrasos en la animación */
.background-light:nth-child(1) {
    top: 10%;
    left: 30%;
    animation-delay: 0s; /* Sin retraso */
}

.background-light:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s; /* 1 segundo de retraso */
}

.background-light:nth-child(3) {
    top: 50%;
    left: 40%;
    animation-delay: 2s; /* 2 segundos de retraso */
}

.background-light:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 1.5s; /* 1.5 segundos de retraso */
}

.background-light:nth-child(5) {
    top: 80%;
    left: 60%;
    animation-delay: 2.5s; /* 2.5 segundos de retraso */
}

.background-light:nth-child(6) {
    top: 90%;
    right: 50%;
    animation-delay: 3s; /* 3 segundos de retraso */
}

.background-light:nth-child(7) {
    top: 20%;
    left: 70%;
    animation-delay: 0.5s; /* 0.5 segundos de retraso */
}

.background-light:nth-child(8) {
    top: 40%;
    right: 30%;
    animation-delay: 1.2s; /* 1.2 segundos de retraso */
}

.background-light:nth-child(9) {
    top: 60%;
    left: 20%;
    animation-delay: 2s; /* 2 segundos de retraso */
}

.background-light:nth-child(10) {
    top: 85%;
    right: 40%;
    animation-delay: 2.8s; /* 2.8 segundos de retraso */
}

.background-light:nth-child(11) {
    top: 15%;
    left: 50%;
    animation-delay: 1s; /* 1 segundo de retraso */
}

.background-light:nth-child(12) {
    top: 65%;
    right: 70%;
    animation-delay: 2.4s; /* 2.4 segundos de retraso */
}

@keyframes floatBackground {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.yellow-flower-button {
    background-color: #FFD700; /* Color amarillo */
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.2em;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

    .yellow-flower-button:hover {
        background-color: #FFC107; /* Efecto hover */
        cursor: pointer;
    }
