:root {
  --background: #cccccc;
  --muted: #8a8a8a;
  --hover: #1f1f1f;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.nothing-symbol {
  color: var(--muted);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 200;
  line-height: 1;
  cursor: default;
  user-select: none;
  transition: color 180ms ease;
}

.nothing-symbol:hover {
  color: var(--hover);
}

.social-links {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-links a {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--hover);
  transform: translateY(-1px);
}

.social-links svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.social-links .icon-email {
  stroke-width: 1.2;
}
