#uploadAnime {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    height: 100vh;
    width: 100vw;
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.9);
}

#uploadAnime > div {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#animeCore {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#animeCore > div:first-child {
    position: absolute;
    border: 10px solid red;
    border-bottom: 10px solid transparent;
    border-radius: 100%;
    height: 150px;
    width: 150px;
    animation: roundRight 2s linear infinite;
}

#animeCore > div:last-of-type {
    position: absolute;
    border: 8px solid red;
    border-top: 8px solid transparent;
    border-radius: 100%;
    height: 100px;
    width: 100px;
    animation: roundLeft 2s linear infinite;
}

#animeCore > p {
    position: absolute;
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    /* text-shadow: 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black; */
}

@keyframes roundRight {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(720deg);
    }
}

@keyframes roundLeft {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-720deg);
    }
}
