rotate-boxセレクターを追加

/* 回転アニメーションの定義 */
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 回転する要素のスタイル */
.rotate-box {
  width: 75%;
  height: 75%;
  background-color: #fff;
  margin: 50px auto;
  animation: rotateAnimation 5s linear infinite;
}