/* Reset some basic elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Full-page layout */
html, body {
  height: 100%;
  background-color: #2d353b;
  color: #d3c6aa;
  font-family: 'Open Sans';
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

main {
  max-width: 600px;
  padding: 1em;
}

h1 {
  font-family: 'Inconsolata', monospace;
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

section.intro p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

section.links h2 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

section.links {
  font-family: 'Inconsolata', monospace;
}

span.asterisk {
  font-family: 'Inconsolata', monospace;
  color: #4f585e;
}

ul {
  list-style: none;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.3rem;
}

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

a:hover, a:focus, a:active {
  text-decoration: underline;
}

footer {
  color: #4f585e;
  font-size: 0.9rem;
  margin-top: 2rem;
}
