﻿.containerl {
    display: grid;
    place-content: center;
    height: 100vh;
}

.cargandol {
    width: 120px;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto;
}

.texto-cargando {
    color: white;
}

.cargando span {
    font-size: 20px;
    text-transform: uppercase;
}

.pelotas {
    width: 30px;
    height: 30px;
    background-color: #00b8de;
    animation: salto .5s alternate infinite;
    border-radius: 50%
}

    .pelotas:nth-child(2) {
        animation-delay: .18s;
    }

    .pelotas:nth-child(3) {
        animation-delay: .37s;
    }

@keyframes salto {
    from {
        transform: scaleX(1.25);
    }

    to {
        transform: translateY(-50px) scaleX(1);
    }
}
