@keyframes init {
    from {
        transform: scale(1.2);
        filter: sepia(1);
        opacity: 0;
    }

    to {
        transform: scale(1.0);
        filter: sepia(0);
        opacity: 1;
    }
}

@keyframes configInit {
    from {
        transform: translateX(0px);
        opacity: 1;
    }

    to {
        transform: translateX(-50px);
        opacity: 0;
    }
}

@keyframes regularInit {
    to {
        transform: scale(1.2);
        filter: sepia(1);
        opacity: 0;
    }

    from {
        transform: scale(1.0);
        filter: sepia(0);
        opacity: 1;
    }
}

@keyframes erroredInit {
    from {
        transform: translatey(0px);
        opacity: 1;
    }

    to {
        transform: translatey(-50px);
        opacity: 0;
    }
}

@keyframes rotate {
    from {transform: rotatez(0deg);}
    to {transform: rotatez(359deg);}
}

html {
  background-color: black;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    margin: 0;
    height: 100vh;
    cursor: none;
}

.container {
    animation: init 0.5s ease;
}

.container div {
    font-size: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 150px;
}
  
i {
    animation: rotate infinite linear 1s;
    mask-image: url("/svg/loading_spinner.svg");
    height: 50px;
    width: 50px;
    aspect-ratio: 1/1;
    background-color: white;
}

img {
    transform: translatex(-10px);
    margin-bottom: 100px;
}