@font-face {
  font-family: "Alte DIN 1451 Mittelschrift";
  src: url("/fonts/din1451alt.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-color: #15616dff;
  --text-color: #ffecd1ff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background-color);
}

body {
  min-height: 100svh;
  margin: 0;
  background: var(--background-color);
  color: var(--text-color);
  font-family:
    "Alte DIN 1451 Mittelschrift",
    "DIN 1451",
    "Bahnschrift",
    "Arial Narrow",
    Arial,
    sans-serif;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
}

.content {
  width: min(100%, 1400px);
  text-align: center;
}

h1,
p {
  margin: 0;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.015em;
}

h1 {
  font-size: clamp(52px, 10vw, 133px);
  margin-bottom: clamp(28px, 4vw, 56px);
}

.line {
  font-size: clamp(30px, 5vw, 64px);
  margin-top: clamp(10px, 1.8vw, 22px);
}

.launch {
  font-size: clamp(40px, 7vw, 85px);
  margin-top: clamp(34px, 5vw, 72px);
}

@media (max-width: 480px) {
  h1 {
    letter-spacing: 0.005em;
  }

  .line,
  .launch {
    letter-spacing: 0.01em;
  }
}

.socials {
  margin-top: clamp(42px, 6vw, 84px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.social-link {
  width: clamp(42px, 5vw, 58px);
  height: clamp(42px, 5vw, 58px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  text-decoration: none;
  opacity: 0.72;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid var(--text-color);
  outline-offset: 6px;
}

.social-icon {
  width: 100%;
  height: 100%;
}

.social-icon rect,
.social-icon circle,
.social-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linejoin: miter;
}

.social-icon text {
  fill: currentColor;
  font-family:
    "Alte DIN 1451 Mittelschrift",
    "DIN 1451",
    "Bahnschrift",
    "Arial Narrow",
    Arial,
    sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
}