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

html {
  height: 100%;
}

body {
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0a0a0a;
  color: #ededed;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #fafafa;
  margin-bottom: 0.4rem;
}

p {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 400;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #888;
  letter-spacing: 0.01em;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.links a {
  color: #666;
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.links a:hover {
  color: #fafafa;
}

.links svg {
  width: 20px;
  height: 20px;
}
