* {
  box-sizing: border-box;
}

html {
  background: #036361;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding:
    max(1rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.5;
  background: linear-gradient(96deg, #018eb2 0%, #036361 100%);
  color: #ffffff;
}

.container {
  width: min(100%, 40rem);
  text-align: center;
  padding: 2rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.008em;
  font-variation-settings: "opsz" 30, "wght" 700;
  text-shadow: 0 0.08em 0.24em rgba(0, 42, 57, 0.28);
}

h2 {
  margin: 0.5rem 0 1.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.9);
}

p {
  margin: 0;
}

a {
  display: inline-block;
  padding: 0.35rem 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

a:hover,
a:focus-visible {
  text-decoration: underline;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
