.container {
    background-color: chocolate;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;

}

.circular span {
    animation: jump 0.6s ease-in-out;

}

.circular:hover span {
    animation: jump 0.6s ease-in-out infinite;

}

@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
        color: chocolate;
    }

    50% {
        transform: translateY(-15px);
        color: rgb(205, 205, 205);
    }
}

.circular span:nth-child(1) {
    animation-delay: 0s;
}

.circular span:nth-child(2) {
    animation-delay: 0.1s;
}

.circular span:nth-child(3) {
    animation-delay: 0.2s;
}

.circular span:nth-child(4) {
    animation-delay: 0.3s;
}

.circular span:nth-child(5) {
    animation-delay: 0.4s;
}

.circular span:nth-child(6) {
    animation-delay: 0.5s;
}

.circular span:nth-child(7) {
    animation-delay: 0.6s;
}

.circular span:nth-child(8) {
    animation-delay: 0.7s;
}

.circular span:nth-child(9) {
    animation-delay: 0.8s;
}

.circular span:nth-child(10) {
    animation-delay: 0.9s;
}

.circular span:nth-child(11) {
    animation-delay: 1s;
}

.circular span:nth-child(12) {
    animation-delay: 1.1s;
}

.circular span:nth-child(13) {
    animation-delay: 1.2s;
}

.circular span:nth-child(14) {
    animation-delay: 1.3s;
}

.circular span:nth-child(15) {
    animation-delay: 1.4s;
}

.circular span:nth-child(16) {
    animation-delay: 1.5s;
}

.circular span:nth-child(17) {
    animation-delay: 1.6s;
}

.circular span:nth-child(18) {
    animation-delay: 1.7s;
}