:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #c8ebff;
  color: #0d1b24;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

.home {
  min-height: 100vh;
  background: #c8ebff;
}

.home__content {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.pall-button {
  width: min(72vw, 420px);
  min-height: 150px;
  border: 0;
  border-radius: 8px;
  background: #159947;
  color: #ffffff;
  cursor: pointer;
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 18px 42px rgb(21 153 71 / 24%);
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.pall-button:hover {
  background: #11843d;
  box-shadow: 0 22px 48px rgb(21 153 71 / 28%);
  transform: translateY(-2px);
}

.pall-button:focus-visible {
  outline: 4px solid #ffffff;
  outline-offset: 5px;
}

.pall-button:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}
