 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

 body{
    background-color: black;
 }
 
 .wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.wrapper .loader{
    display: flex;
    justify-content: space-evenly;
    padding: 0 20px;
}

.loader .loading {
    background-color: white;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    margin: 0 10px;
    animation: load 0.8s ease infinite;
}

.loader .loading.one{
    animation-delay: 0.3s;
}
.loader .loading.two{
    animation-delay: 0.4s;
}
.loader .loading.three{
    animation-delay: 0.5s;
}

@keyframes load {
    0% {
        height: 30px;
        width: 30px;
    }
    50% {
        height: 20px;
        width: 20px;
    }    
}