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

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.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 {
  margin: 0 auto;
  font-family: 'Noto Serif TC', serif;
  font-size: 2em;
  color: #fff;
  text-decoration: none;
  text-shadow: 0px 0px 10px #F0F0F0;
}

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

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

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

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

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