:root {
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  color: #172033;
  background: #f4f6f8;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

.container {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.card {
  width: min(100%, 680px);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
}

.old-brand {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
}

p {
  line-height: 1.7;
}

.button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 1.4rem;
  color: #ffffff;
  text-decoration: none;
  background: #172033;
  border-radius: 0.5rem;
}

.button:hover,
.button:focus-visible {
  background: #33415c;
}
