body {
    margin: 0;
}

.wrapper {
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    width: 100dvw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
}

.loader {
    width: 60px;
    height: 60px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-circle {
    border: 8px solid #67e8b9;
    border-radius: 50%;
    border-top-color: #39328c;
    animation: spin 1s ease-in-out infinite;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

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