* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Noto Serif TC", serif;
  font-weight: 200;
  font-style: normal;
}
.container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes txtShine {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
