body {
  background-color: black;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: monospace;
}
p {
  color: white;
}
a {
  color: teal;
}
a:hover {
  color: orangered;
}
