
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  background: #000;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  text-align: center;
  font-size: clamp(12px, 2vw, 20px);
}

h1 {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
}

p {
  font-size: clamp(0.85rem, 2vw, 1.25rem);
}

.social-links {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  justify-content: center;
  margin-top: clamp(0.5rem, 1.5vh, 1.25rem);
}

.social-links a {
  color: #e0e0e0;
  display: inline-flex;
}

.social-links a:hover {
  color: #fff;
}

.social-links svg {
  width: clamp(1rem, 3vw, 2rem);
  height: clamp(1rem, 3vw, 2rem);
}

