html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

body {
    background-color: #DA291C;
}

.rotate-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    animation: rotateAnimation 0.8s infinite cubic-bezier(0.21, 0.72, 0.63, 0.93);
    transform-origin: 10.5px 21.2px;
}

.colored-span {
    color: white;
}

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

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

#loading {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    width: 100%;
}