html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #121212;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  text-align: center;
  max-width: 500px;
  padding: 20px;
}

.wrapper h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.wrapper p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.link-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn {
  text-decoration: none;
  padding: 12px 24px;
  background-color: #ff0066;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
  width: 200px;
  text-align: center;
}

.btn:hover {
  background-color: #e6005c;
}
