.circle {
    transform-style: preserve-3d;
    animation: animate 20s linear infinite;
    --deg: calc(360deg / var(--numchs));
    z-index: 1;
    width: 150px;
position: absolute;
bottom: 150px;
left: 550px;
}

@keyframes animate {
    0% {
        transform: perspective(4000px) rotateY(0deg) rotateX(0deg);    
        transform-origin: center;            
/*                 left: 20%; */
    }

    50% {
        transform: perspective(4000px) rotateY(180deg) rotateX(0deg);                
        transform-origin: center;   
/*                 left: 10%;          */
    }
    
    100% {
        transform: perspective(4000px) rotateY(360deg) rotateX(0deg);
        transform-origin: center;
/*                 left: 0%;             */
    }
}

.circle .char {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    padding: 10px 30px;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--char-index) * var(--deg))) translateZ(530px);
    font-family: 'Black Han Sans', sans-serif;
    width: 200px;
    height: 100px;
}

.circle .char:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateZ(-5px);
}

.globe {
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: 0;
    filter: grayscale(1);
    transform: scale(2.5);
}