h1 {
  font-family: "Cheee";
  font-size: 150px;
  font-variation-settings: "yest" 700, "gvty" 1000;
  padding: 12px 48px;
  color: #ffffff;
  background: url("/static/imgs/others/landscape.jpg");
  background-position: 0;
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: walk 14s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 500;
  width: 1350px;
  margin-top: 10%;
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  margin: 0;
  background: black;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.beian {
  color: #FFFFFF;
  text-decoration: none;
  position: fixed;
  bottom: 100px;
}

.beian a {
  color: #FFFFFF;
  text-decoration: none;
}

@keyframes walk {
  0% {
    background-position: -800px;
  }
  50% {
    background-position: 300px;
  }
  100% {
    background-position: -800px;
  }
}