#loader{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0e0b30;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s;
}

#loader img{
    height: 100px;
    aspect-ratio: 1;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(360deg);
    }

    50%{
        transform: rotate(313deg);
    }

    100% {
        transform: rotate(360deg);
    }
}