:root {
  --bg-top: #f4f7f9;
  --bg-bottom: #e7edf1;
  --ink-strong: #52120c;
  --ink: #00334e;
  --ink-soft: #244a62;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  text-align: center;
}

.initials {
  margin: 0;
  color: var(--ink-strong);
  font-family: "Optima", "Avenir Next Condensed", "Segoe UI", serif;
  font-size: clamp(5rem, 28vw, 16rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.title {
  margin: 0;
  max-width: 48rem;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  letter-spacing: 0.02em;
}

.icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.icons a {
  color: var(--ink);
  border-radius: 999px;
  padding: 0.4rem;
  line-height: 0;
  transition: transform 120ms ease, color 120ms ease;
}

.icons a:hover {
  transform: translateY(-1px);
  color: var(--ink-strong);
}

.icons a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

svg {
  width: 1.75rem;
  height: 1.75rem;
}
