@media (min-width: 228px) {
    .container {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .contenedorletras {
        width: 100%;
        height: 100%;
        position: relative;
        top: 17%;
    }
    .segundoCluster {
        position: relative;
        inset: -47% 0% 0% 0%;
    }
    .fotoo {
        position: relative;
        inset: -59% 0% 0% 0%;
    }
    .sita {
        color: white;
        font-size: 14px;
        text-align: center;
        margin-bottom: 20px;
    }
    .steve {
        color: white;
        font-size: 25px;
        text-align: center;
        margin-bottom: 20px;
    }
    .historia {
        color: white;
    }
    .relato{
        color: white;
        font-size: 14px;
        text-align: justify;
    }

    .content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1px; /* separación entre imágenes */
        flex-wrap: wrap;
        max-width: 90%;
    }

    .content img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        animation-name: fadeInAndOut;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
        opacity: 0;
    }
}
@media (min-width: 1020px) {
    .container {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .contenedorletras {
        width: 100%;
        height: 100%;
        position: relative;
        top: -8%;
    }
    .segundoCluster {
        position: relative;
        inset: -25% 0% 0% 0%;
    }
    .fotoo {
        position: relative;
        inset: -53% 0% 0% 0%;
    }
    .sita {
        color: white;
        font-size: 25px;
        text-align: center;
        margin-bottom: 20px;
    }
    .steve {
        color: white;
        font-size: 25px;
        text-align: center;
        margin-bottom: 20px;
    }

    .content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1px; /* separación entre imágenes */
        flex-wrap: wrap;
        max-width: 90%;
    }

    .content img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        animation-name: fadeInAndOut;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
        opacity: 0;
    }
}


@keyframes fadeInAndOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    30% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    70% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Secuencia personalizada */
.reed   { animation-delay: 0s;  animation-duration: 3s; }
.sam    { animation-delay: 3s;  animation-duration: 3s; }
.daniel { animation-delay: 6s;  animation-duration: 3s; }
.elon   { animation-delay: 9s;  animation-duration: 3s; }
.bill   { animation-delay: 12s; animation-duration: 3s; }
.jeff   { animation-delay: 15s; animation-duration: 3s; }
.matk   { animation-delay: 18s; animation-duration: 3s; }
.Larry  { animation-delay: 21s; animation-duration: 3s; }
.wang   { animation-delay: 24s; animation-duration: 3s; }
.linus  { animation-delay: 27s; animation-duration: 3s; }
.stevej { animation-delay: 30s; animation-duration: 8s; }