body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

h1, section, li {
  font-family: 'Courier New', Courier, monospace;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
  padding: 5px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 2em 0 1em 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}

nav a {
  color: #bb86fc;
  text-decoration: none;
  font-size: 1.1rem;
}

nav a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

section {
  background: rgba(30,30,30,0.85);
  border-radius: 12px;
  padding: 2em 2.5em;
  box-shadow: 0 2px 16px 0 #000a;
  margin-top: 1em;
  max-width: 600px;
  width: 100%;
}

a {
  color: #bb86fc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  font-size: 1.2rem;
  margin: 0.5em 0;
}

article {
  width: 100%;
}