body,
html {
  margin: 0;
  padding: 0;
  background-color: #202020;
  color: white;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
#main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  margin: 20px;
  text-align: center;
}

h1 {
  text-transform: uppercase;
}

h2,
h3 {
  font-size: 1em;
}

#flex {
  display: flex;
  gap: 15px;
}

#button {
  padding: 16px 32px;
  background-color: #6e0d05;
  color: white;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.15s ease-in-out;
}

#button:hover {
  transform: scale(105%);
  background-color: #861106;
  color: gold;
}
