/* Reset & Basis */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Ubuntu, sans-serif;
  background: #000;
  color: #fff;
}

/* Layout */
.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  padding: 2rem;
}

/* Fable Bild */
.fable {
  width: 280px;
  max-width: 80vw;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.35));
}

/* Headline */
h1 {
  font-size: 2.8rem;
  letter-spacing: 0.25em;
  font-weight: 600;
}

/* Tagline */
.tagline {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Under construction */
.construction {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.6;
}

/* URL unten */
.url {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.4;
}
