﻿.text {
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: none;
    font-family: 'Times New Roman';
    font-size: 20px;
    fill: #111;
    text-shadow: 1px 0px #ccc;
}

#rotatingText {
    animation-name: rotate-circle;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes rotate-circle {
    to {
        transform: rotate(1turn);
    }
}

.main {
    display: grid;
    align-items: center;
    justify-items: center;
   
}

    .main img {
        position: absolute;
    }

    .main img {
        position: absolute;
        animation-name: rotate-circle;
        animation-direction: reverse;
        animation-duration: 5s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        filter: drop-shadow(0px 0px 5px #333);
    }
