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

html,
body {
  overscroll-behavior: none;
  background-color: black;
}

.the-title {
  color:aliceblue;
  /* text-align: center; */
}

.rotating-text-container {
  margin-top: 30%;
  font-weight: bold;
  color: #b24b4b;
  filter: blur(3px);
  text-align: center;
  transform-origin: center center;
  animation: fade-in 0.2s infinite;
  /* 鼠标悬停在linear infinite，点击MDN Reference查看更多效果 */
}
/* 这里没弄出来 救救 */


@keyframes fade-in {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100%{ opacity: 0;}
}
ea{
  font-size: 40px;
}