#loading {
    position: fixed;
    z-index: 999;
    background: rgba(253, 250, 238, 0.95);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .25s;
}

#loading img {
    width: 100px;
    animation: col 1 linear infinite;
}

@keyframes col {
    0%, 71% {
        fill: none
    }

    72% {
        fill: #FF7B78
    }

    75%, 100% {
        fill: none
    }
}

.animation-fade {
    animation: fade .3s forwards;
}

@keyframes fade {
    to {
        opacity: 0;
    }
}