@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height:100vh;
    background-color:black ;

}

.loder
{
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;

}


.loder h2{
    color: #ffe600;
    font-weight: 500;
    font-size: 35px;
}

.loder span
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ffe600;
animation: animate 5s linear infinite;
}

@keyframes animate
{
    0%
    {
    transform: rotate(0deg);
}

 100%
{
transform: rotate(360deg);
}
} 

.loder span:nth-child(1)
{
    border-radius: 30% 70% 30% / 30% 30% 70% 70%;
}

.loder span:nth-child(2)
{
    border-radius: 88% 12% 70% 30% / 52% 66% 34% 48%;
    animation-direction: reverse;
}

.loder span:nth-child(3)
{
    border-radius: 43% 57% 63% 37% / 52% 43% 57% 48%;
    -o-animation-delay: 3s;
}