@charset "utf-8";

.container {
    padding: 100px;
  }
  .block {
    width: 100px;
    height: 100px;
    margin: auto;
  }
  .circleText {
    overflow: visible;
    animation: rotation 20s linear infinite;
    &__circle { 
      fill: none; 
    }
    &__text {
      fill: #000;
      font-size: 10px;
      letter-spacing: 0.10em;
    }
}
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
