:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #242424;
  color: #f2f2f2;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  background: #242424;
}

.intro {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 5rem);
  text-align: left;
}

h1 {
  margin: 0;
  font-size: clamp(1.3rem, 3.1vw, 3.3rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

p {
  margin: 0.9rem 0 0;
  font-size: clamp(0.72rem, 1.05vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.09em;
  color: #c9c9c9;
}

.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.socials a {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: #ededed;
  border: 1px solid #666;
  border-radius: 50%;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: #242424;
  background: #f2f2f2;
  border-color: #f2f2f2;
  outline: none;
}

.socials svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials svg .fill {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 600px) {
  .intro {
    padding: 1.5rem;
  }

  h1 {
    font-size: clamp(1.25rem, 5.7vw, 2.15rem);
  }

  p {
    margin-top: 0.75rem;
  }

  .socials {
    margin-top: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .socials a {
    transition: none;
  }
}
