@font-face {
    font-family: 'SofiaPro';
    src: url('fonts/SofiaPro/SofiaPro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

body {
    overflow: hidden;
    margin: 0;
}

#loading-wrapper {
    background-color: #000000;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

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

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