/* --------------------------------
    CSS PARA ESTILO DEL INDEX
-------------------------------- */

/* Diseño del Body */
body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor principal centrado y en columna */
.contenedor {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Espacio entre elementos */
}

/* Imagen */
img {
    width: 180px;
}

/* Contenedor de los puntos animados */
.bouncing-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Puntos individuales */
.dot {
    width: 15px;
    height: 15px;
    background-color: #127BFD;
    border-radius: 50%;
    animation: bounce 1.5s infinite;
}

/* Retraso para cada punto */
.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

/* Efecto rebote */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}