:root {
  color-scheme: light;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111111;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
}

main {
  width: min(100% - 3rem, 68rem);
  min-height: 100svh;
  margin-inline: auto;
  padding-block: clamp(2rem, 8vw, 6rem) 2rem;
}

.intro {
  padding-top: clamp(3rem, 14vh, 9rem);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.profiles {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.profiles a {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  color: #666666;
  transition: color 160ms ease-out;
}

.profiles a:hover {
  color: #111111;
}

.profiles a:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 4px;
}

.profiles svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 480px) {
  main {
    width: min(100% - 2rem, 68rem);
    padding-bottom: 1.25rem;
  }
}
