@font-face {
    font-family: 'SofiaPro';
    src: url('fonts/SofiaPro/Sofia Pro Bold.otf') format('opentype');
    font-weight: 700;
}

body {
    overflow: hidden;
    margin: 0;
}

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

#title {
    font-family: 'SofiaPro', sans-serif;
    font-weight: 700;
    font-size: 4.5em;
    color: white;
    text-align: center;
    line-height: 1.1;
    transition: opacity 0.4s ease-out;
    margin: 0;
    animation: slight-bounce 1.7s ease-in-out infinite;
}

@keyframes slight-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-7px);
    }

    50% {
        transform: translateY(4px);
    }

    75% {
        transform: translateY(-4px);
    }
}