* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: consolas;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  /*background: #ccc;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  position: absolute;
  width: 150px;
  height: 150px;
  background: url(tom.png);
  background-size: cover;
  border-radius: 50%;
  filter: brightness(1.5) contrast(1.5);
}

.text {
  position: absolute;
  width: 100%;
  height: 100%;
  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 100px;
}
