/* Retro pixel vibe */
body {
  margin: 0;
  background: #111;
  color: #eee;
  font-family: 'Courier New', Courier, monospace;
}

.nav {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.nav a {
  margin-right: 1.5rem;
  color: #69f;
  text-decoration: none;
}

.nav .resume {
  margin-left: auto;
  background: #228;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.nav .resume:hover {
  background: #44b;
}

.centered {
  max-width: 600px;
  margin: 8rem auto 0;
  text-align: left;
}

.centered h1 {
  color: #fff;
  font-size: 2rem;
}

.centered p {
  margin-top: 1rem;
  line-height: 1.4;
}

.button {
  display: inline-block;
  margin-top: 1.5rem;
  background: #69f;
  color: #111;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.button:hover {
  background: #8bf;
}

.separator {
  border-top: 1px solid #555;
  margin: 2rem 0;
}

footer {
  font-size: 0.9rem;
  color: #588;
}
