/* Fondo y centrado */
body {
    margin: 0;
    background-color: #002147;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor del logo */
.container {
    text-align: center;
}

/* Estilo del logo */
.logo {
    width: 200px;
    height: auto;
    animation: bounce 2s ease-in-out infinite;
}

/* Animación tipo rebote */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}
