body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  font-family: monospace;
  font-size: 2rem;
  margin: 0;
  min-height: 100dvh;
  user-select: none;
}

p {
  margin: 50px;
}

span {
  font-weight: bold;
  background-color: white;
  color: black;
  padding: 5px;
}

.main a {
  text-decoration: none;
  color: white;
  background-color: orangered;
  font-weight: bold;
  padding: 5px;
}

.contact {
  display: flex;
  width: 100%;
  justify-content: center;
}

.contact a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  margin: 50px;
  padding: 25px;
}

a:hover {
  background-color: white;
  color: black;
}

a:active {
  background-color: black;
  color: white;
}

@media screen and (max-width: 900px) {
  body {
    font-size: 1.5rem;
  }

  .main p {
    margin: 25px;
    line-height: 3rem;
  }

  .contact {
    flex-direction: column;
    align-items: center;
  }

  .contact a {
    margin: 1rem;
  }
}