html,
body {
  height: 100%;
  margin: 0 auto;
  background: #121212;
  display: flex;
}

.div {
  display: flex;
  flex-direction: column;
  padding: 50px;
  width: 100%;
  font-family: 'Noto Serif TC', serif;
  color: #FFFFFF;
}


.title {
  line-height: 2em;
  font-family: 'Inconsolata', monospace;
  font-size: 4em;
  color: white;
  text-align: center;
  text-shadow: 0px 0px 10px #F0F0F0;
  animation: anim-float 3s ease-in-out infinite;
}

h1,
h2,
h3,
p {
  font-family: 'Noto Serif TC', serif;
  margin: 0;
}

#last {
  width: max-content;
  padding: 10px;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .title {
    line-height: 1em;
    font-size: 2.5em;
  }

  h1 {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.5em;
  }

  h2 {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.2em;
  }

  h3 {
    font-family: 'Noto Serif TC', serif;
    font-size: 1em;
    line-height: 1em;
  }
}

@keyframes anim-float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-5px);
  }

  100% {
    transform: translatey(0px);
  }
}