* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 1rem;
}

h1 {
  text-align: center;
  font-family: "Modak", system-ui;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 200px;
  margin: -20px 0;
  line-height: 1.1;
}

.fact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.fact p {
  text-align: center;
  max-width: 90%;
  font-family: "Zain", sans-serif;
  font-weight: 200;
  font-size: 2rem;
  line-height: 1.4;
}

/* ---------- MOBILE DESIGN ---------- */
@media (max-width: 600px) {
  h1 {
    font-size: 18vw; /* skaliert mit Displaybreite */
    margin: 0.2rem 0;
  }

  .fact p {
    font-size: 5vw; /* passt sich dem kleinen Screen an */
  }

  body {
    padding: 0.5rem;
  }
}
