:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #162033;
  background: #eef2f7;
}

* {
  box-sizing: border-box;
}

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  padding: 1.5rem;
  place-items: center;
}

.card {
  width: min(100%, 48rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  background: #ffffff;
  border: 1px solid #dce3ec;
  border-radius: 1rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: #17675a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.1;
}

p {
  line-height: 1.6;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.1rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  background: #17675a;
  border: 0;
  border-radius: 0.55rem;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: #0e4f45;
}

table {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: collapse;
}

th,
td {
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5eaf0;
}

th {
  width: 30%;
}

code {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

@media (max-width: 36rem) {
  th,
  td {
    display: block;
    width: 100%;
  }

  th {
    padding-bottom: 0.2rem;
    border-bottom: 0;
  }

  td {
    padding-top: 0.2rem;
  }
}
