html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3.4vw;
  }
}

body {
  font-family: "Zen Maru Gothic", serif;
  color: #270003;
  line-height: 2;
  background-color: #FFEDEE;
}

a {
  transition: 0.3s;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}