* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.loading {
    width: 100px;
    height: 100px;
    border: 50px dotted red;
    border-radius: 50%;
    animation: loadingAnimation 5s infinite;
}

@keyframes loadingAnimation {
    0% {
        rotate: 0deg;
        border: 10px dashed red;
    }

    20% {
        border: 20px dashed blue;
    }

    50% {
        rotate: 360deg;
        width: 200px;
        height: 200px;
        border: 30px solid aqua;
    }

    80% {
        border: 20px dashed blue;
    }

    100% {
        rotate: 0deg;
        border: 10px dashed green;
    }
}

.loadingBody {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-content: center;
    align-items: center;
}