@font-face {
  font-family: "SedanSC";
  src: url("SedanSC-Regular.ttf") format("truetype");
  /* Weitere Stile und Schriftarten (z.B. fett, kursiv) hier hinzufügen */
}

h1 {
  font-family: "SedanSC", sans-serif;
  color: white;
  font-size: 2.25rem;
  font-weight: bold;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 8vh;
  background-color: #880000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7vh;
  background-color: #880000;
  display: flex; /* Flexbox aktivieren */
  justify-content: space-around; /* Elemente gleichmäßig verteilen */
  align-items: center; /* Vertikal zentrieren */
  color: white;
  z-index: 1;
}

main {
  overflow: auto;
}
