html,
body {
  background-color: #eaeaea;
  color: #33363b;
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  height: 100%;
}
a {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
}
#container {
  display: flex;
  align-items: center;
  height: 100%;
}
#content {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #33363b;
  padding: 70px;
}
#content h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 3em;
  animation: fadeIn ease 0.5s;
}
#content h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.8em;
  animation: fadeIn ease 1s;
}
#content p {
  font-size: 14px;
  font-family: 'DM Mono', monospace;
  line-height: 1.5em;
  animation: fadeIn ease 2s;
}
#content p.linkIcons {
  font-size: 1.5em;
}
#content p.linkIcons a {
  color: inherit;
}
@media only screen and (max-width: 768px) {
  #container {
    align-items: baseline;
  }
  #content {
    border: 0;
    align-self: stretch;
    padding: 20px;
  }
  #content h1 {
    font-size: 2.3em;
  }
  #content h2 {
    font-size: 1.5em;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
