*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.place{
    display: flex;
    column-gap: 17px;
}
.place .dot{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #008ae6;
    animation: Loader 1s ease-in-out infinite alternate;
}
.dot:nth-child(1){
    animation-delay: -0.25s;
}
.dot:nth-child(2){
    background: #e60000;
    animation-delay: -0.5s;
}
.dot:nth-child(3){
    background: #ffcc00;
    animation-delay: -0.75s;
}
.dot:nth-child(4){
    background: #008800;
    animation-delay: -1s;
}
@keyframes Loader {
    0%{
        transform: translateY(-16px);
    }
    100%{
        transform: translateY(8px);
    }
}