body {
  background-color: rgb(211, 134, 39);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 150px, black 150px, black 300px);
  color: #3e3e3e;
  font-family: system-ui, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: left;
  padding: 20px;
}

a {
  color: yellow;
  text-decoration: none;
}

a:hover {
  color: orange;
}

a:visited {
  color: red;
}

#gate-wrapper {
  max-width: 520px;
  background-color: rgb(217, 217, 217);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 5px 10px 18px black;
}

button {
  margin: 2rem;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 12px;
}

button:hover {
  opacity: 0.8;
}

.small {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 15px;
}

.warning-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.warning-header {
  font-size: 1.2rem;
  font-weight: bold;
  padding-top: 1.4rem;
}

.button-wrapper {
  text-align: center;
}