html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  width: 100%;
  background-color: #e1e1e1;

  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgb(10, 32, 45);
  overscroll-behavior: none;
}

* {
  box-sizing: border-box;
}

.text {
  font-size: 1.7rem;       /* größerer Text */
  color: rgb(2, 12, 21);
  max-width: 40rem;
  align-self: center;
  margin-bottom: 15rem;
  flex: 1;
  animation: fade-down 1.5s;

}

.autor {
  text-align: right;   /* rechtsbündig */
  margin-top: 2rem;    /* etwas Abstand zum Zitat */
  font-size: 1.4rem;   /* etwas kleiner als das Zitat */
}

.top-bar {
  position: absolute;   /* fixiert den Balken oben */
  top: 0;
  left: 0;
  width: 100%;
  height: 25rem;         /* Höhe angepasst */
  background-color: #00577D;  /* Farbe */
  z-index: 0;           /* damit er hinter dem Bild bleibt */
}

.headline {
  position: relative;
  z-index: 1;           /* Bild liegt über dem Balken */
  margin-top: 2rem;     /* optionaler Abstand vom oberen Rand */
  display: block;
  margin-left: auto;    /* rechtsbündig */
  margin-right: 0;
  animation: fade-down 1.5s;
}

/* Smartphones (bis 600px Breite) */
@media (max-width: 600px) {
  .headline {
    width: 90%;
    margin: 1rem auto;
    display: block;
  }

  .text {
    font-size: 1.6rem;       /* evtl. etwas kleiner */
    margin-left: 3rem;       /* enger an den Bildschirm anpassen */
    margin-right: 3rem;
  }

  .top-bar {
    height: 14rem;   /* weniger hoch als am Desktop */
  }
}
