:root {
  --deep-night: #0d1117;
  --shadow-ink: #1c2128;
  --muted-silver: #7a8085;
  --pale-moonlight: #e6e6e6;
  --bruised-violet: #3a2c50;
}

body {
  background-color: var(--deep-night);
  color: var(--pale-moonlight);
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

.canvas {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--shadow-ink) 0%, var(--deep-night) 100%);
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;

  overflow: auto;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;

  max-height: 100%;
}

.site-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--pale-moonlight);
  text-shadow: 0 0 20px rgba(230, 230, 230, 0.3);
}

.site-subtitle {
  font-size: 1.5rem;
  color: var(--muted-silver);
  font-style: italic;

  padding-bottom: 50px;
}

.fragment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.05) 0px,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 2px
  );
  opacity: 0.3;
}

.bold {
  font-weight: bold;
}
