body {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 25;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 125vh;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.options {
    position: relative;
    width: 450px;
    height: 450px;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

text {
    animation: rotate 25s linear infinite;
    transform-origin: 50% 50%;
    fill: rgb(117, 251, 76);
}

.name {
  position: relative;
  top: -15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 472px;
  height: 106px;
}

