.rotate {
  width: 600px;
  animation: rotation 10s infinite linear;
}

body {
  background-color: purple;
}

h1 {
  font-size: 36px;
  font-weight: bold;
  color: orange;
}

li {
  font-size: 24px;
  font-weight: bold;
  color: yellow;
}

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