/* Reset */
* {
  box-sizing: border-box;
}

/* Color system */
:root {
  --bg: #0e0e0e;
  --text: #e6e6e6;
  --muted: #8a8a8a;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f7f7f5;
    --text: #111;
    --muted: #777;
  }
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

/* Κεντρικός χώρος */
.text-space {
  max-width: 580px;
  margin: 160px auto 360px;
  padding: 0 24px;
}

/* Τίτλος – κέντρο */
h1 {
  font-size: 2.1rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 90px;
}

/* Κείμενο – αριστερά */
.text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 2.4em;
  text-align: left;
}

/* Σκόπιμες παύσεις */
.pause {
  height: 120px;
}

/* Copyright – σχεδόν αόρατο */
.copyright {
  margin-top: 240px;
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Mobile */
@media (max-width: 600px) {
  .text-space {
    margin-top: 120px;
    margin-bottom: 280px;
  }

  h1 {
    margin-bottom: 70px;
  }

  .copyright {
    margin-top: 180px;
  }
}
