html,
body {
  background-color: #121212;
  height: 100vh;
  width: 100vw;
}

.title {
  line-height: 1em;
  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;
}

a:link,
a:visited {
  color: #F0F0F0;
  text-decoration: none;
}

.a_text {
  font-family: 'Noto Serif TC', serif;
  font-size: 2em;
  color: #F0F0F0;
  text-shadow: 0px 0px 10px #F0F0F0;
}

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

  .a_text {
    font-size: 1.5em;
  }
}