:root {
  --bg: #f2f2f2;
  --text: #0b4e81;
  --button-bg: #3090e5;
  --button-border: #0a4b7e;
  --button-text: #f5f9ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
  width: min(760px, 90vw);
  text-align: center;
  padding: 2.2rem 1rem;
  transform: translateY(-36px);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 3.05rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text);
}

p {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--text);
}

.email {
  margin-top: 1.35rem;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  line-height: 1.2;
}

.email a {
  color: var(--text);
  text-decoration: none;
}

.email a:hover,
.email a:focus-visible {
  text-decoration: underline;
}

.actions {
  margin-top: 2.7rem;
  display: flex;
  justify-content: center;
  gap: clamp(1.1rem, 4vw, 2.6rem);
  flex-wrap: wrap;
}

.button {
  width: clamp(180px, 26vw, 220px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--button-text);
  background: var(--button-bg);
  border: 3px solid var(--button-border);
  border-radius: 22px;
  padding: 0.72rem 1.7rem;
  font-size: clamp(1.08rem, 1.85vw, 1.45rem);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 1px 0 var(--button-border);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}
