﻿.spinner-dodo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

    .spinner-dodo div {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        margin: 0 5px;
        opacity: 0;
        animation: spin 1.2s infinite;
        background: rgba(0,0,0,0.2);
    }

        .spinner-dodo div:nth-child(odd) {
            background-color: #EB9649; /* Color de las bolitas impares */
        }

        .spinner-dodo div:nth-child(even) {
            background-color: #008CAF; /* Color de las bolitas pares */
        }

        .spinner-dodo div:nth-child(1) {
            animation-delay: 0.3s;
        }

        .spinner-dodo div:nth-child(2) {
            animation-delay: 0.6s;
        }

        .spinner-dodo div:nth-child(3) {
            animation-delay: 0.9s;
        }

        .spinner-dodo div:nth-child(4) {
            animation-delay: 1.2s;
        }

@keyframes spin {
    0% {
        opacity: 0;
        transform: scale(0.2);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(0.2);
    }
}
