/* style.css */

/* Schriftart & Grundfarben */
 body {
      background-color: black;
      color: #fff;
      font-family: 'Courier New', monospace;
      margin: 0;
      padding: 0;
      padding-bottom: 60px; /* Höhe des Footers, ggf. anpassen */
      min-height: 100vh;           /* wichtig */
      display: flex;               /* wichtig */
      flex-direction: column;  
    }

/* Header */
  nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: black;
      font-size: 1em;
      padding: 1em 1em;
      font-family: 'Courier New', monospace;;
    }

nav h1 {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  flex: 1; /* optional: nimmt Platz ein und hilft beim Zentrieren */
}

/* Back-Pfeil (z.B. als Link mit Icon) */
 .back-btn {
      color: #fff;
      text-decoration: none;
      font-size: 1em;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Courier New', monospace;;
    }

.back-arrow::before {
  content: '←';  /* Unicode Pfeil nach links */
  color: #00ff00; /* grüne Farbe */
  margin-right: 0.5rem;
  font-size: 1.5rem;
}
.back-btn.back-arrow::after {
  content: "back";
  margin-left: 0.3em; /* optional Abstand zum Pfeil */
  font-family: 'Courier New', monospace;
}

.about-btn {
  content: "about";
  text-decoration: none;
  font-family: 'Courier New', monospace;
  font-size: 1em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0; /* optional */
}

.about-btn::before {
    content: "about";
    margin-right: 0.5em; /* Abstand NACH "about" */
    font-family: 'Courier New', monospace;
    color: #fff;
}

.about-btn::after {
    content: 'i'; /* Unicode Info-Symbol */
    margin-left: 0.3em; /* Abstand VOR "i" */
    font-size: 1.0rem;
    color: #00ff00;
}

/* Inhalt */
main {
 flex: 1;                   /* nimmt den verfügbaren Platz ein */
  display: flex;             /* flex-Container aktivieren */
  align-items: center;       /* vertikal zentrieren */
  justify-content: center;   /* horizontal zentrieren */
  flex-direction: column;    /* falls du mehrere Elemente im main hast */
}

/* Footer */

footer {
  background-color: black;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.window#textTab {
  top: 50px;
  left: 50px;
  width: 370px;
}
.window#musicTab {
  top: 200px;
  left: 200px;
  width: 370px;
}

.close-btn {
  float: right;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1;
  user-select: none;
  color: #fff;
  margin-left: 0.5em;
  transition: color 0.2s;
}
.close-btn:hover {
  color: #00ff00;
}

.notes-container {
  margin: 0 auto;
  margin-top: 3.5rem;
  width: 50vw;
  min-width: 340px;
  max-width: 700px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.notes-headline-row {
  width: 100%;
  border-bottom: 2px solid #00ff00;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  min-height: 3.2em;
}
.notes-headline-row h1 {
  margin: 0;
  padding: 0.3em 0;
  font-size: 2rem;
  color: #00ff00;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  letter-spacing: 1px;
  flex: 1;
}
.notes-content {
  text-align: justify;
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Courier New', monospace;
  line-height: 1.7;
}



