#contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#contents #icon {
  height: 5rem;
}
#contents h1 {
  margin: 0;
}
#contents p {
  margin: 0;
}
#contents a {
  text-decoration: none;
}
#contents #home-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #046d4d;
  color: #c9c9c9;
  border: none;
  outline: none;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 2rem;
}
#contents #home-button svg {
  height: 1.5rem;
  color: #c9c9c9;
}
#contents #home-button span {
  font-size: 1rem;
  font-weight: bold;
}
#contents #home-button:hover {
  background: #058861;
}
#contents #home-button.disabled {
  background: #242424;
  color: rgba(255, 255, 255, 0.2);
}