* {
  background-color: rgb(0, 0, 0);
}

p {
  color: white;
  font-family: monospace;
  font-weight: 800;
  font-size: 10rem;
  margin: 0px;
  text-align: center;
}
a {
  padding: 0.5rem 1rem;
  border: 3px solid grey;
  border-radius: 5px;
  background-color: white;
  color: black;
  font-family: monospace;
  text-decoration: none;
}
a:hover {
  background-color: grey;
  border-color: rgb(160, 160, 160);
  transition: all 0.1s ease;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}