body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; /* Perspectiva para efecto 3D */
}

.logo {
    /* Elimina cualquier restricción de tamaño para que se vea en su tamaño real */
    animation: spin3D 4s linear infinite;
    transform-style: preserve-3d;
}
  
@keyframes spin3D {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}
