.load {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100vh;
  width: 100vw;
  text-align: center; /* テキストを中央揃えにする */

  /* h1とh2のスタイル */
  color: #06C755;
}

h1 {
  font-size: 2em;
  animation: blinking 2s infinite;
  margin-bottom: 10px; /* h1とh2の間の余白を設定 */
}

h2 {
  font-size: 1em;
}

a {
  color: #06C755;
}

@keyframes blinking {
  0%,
  100% {
    color: #06C755;
  }
  50% {
    color: transparent;
  }
}

#loading {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(6, 199, 85, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.7s ease-in-out infinite;
}

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

#mani {
  opacity: 1;
  transition: 1s;
}
