*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: consolas;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
}

.circle{
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    position: absolute;
    width: 350px;
    height: 350px;
    background: url(../Img/Jennie.jpeg);
    background-size: cover;
    border-radius: 50%;
    filter: brightness(0.9) contrast(1.5);
}

.text{
    height: 100%;
    width: 100%;
    position: absolute;
    animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
    0%{
        transform: rotate(360deg);
    }

    100%{
        transform: rotate(0deg);
    }
}

.text span
{
    position: absolute;
    left: 50%;
    font-size: 1.2em;
    transform-origin: 0 200px;
}