:root {
  --bg: #faf7f7;
  --text: #121212;
  --btn-bg: #1c1c1c;
  --btn-text: #fafafa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Red Hat Display", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 4.5rem);
}
h2 {
  font-weight: 600;
  font-size: clamp(3rem, 1vw, 0.5rem);
  margin-bottom: 1.5rem; /* Tighter spacing to buttons */
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease-in-out;
}

.btn:hover:not(.disabled) {
  transform: translateY(-2px);
}

.icon {
  width: 18px;
  height: 18px;
  filter: invert(100%);
}
