/* Hier einige Einstellungen für die Navigations-Seite */

body {
    /* Betrifft ganzes Dokument, alle Texte */
    font-family: "Instrument Sans";
    margin-left: 3rem;
    margin-right: 6rem;
    margin-top: 3rem;
  }
  
  /* Titel */
  h1 {
    font-size: 200%;
    font-weight: 100;
    margin-bottom: -2rem;
  }

  h2 {
    font-size: 200%;
    margin-bottom: 2rem;
    font-weight: 100;
    color: rgb(105, 195, 230);
  }

  /* Navigation, ganze Liste */
  ul {
    list-style: none; /*  Listenpunkte abschalten */
    padding: 0; /* Kein Einzug */
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 50rem;
    /* gap: 2rem; */
  }
  
  /* Navigation, einzelner Listenpunkt */
  ul li {
    font-size: 500%;
    line-height: 6.5rem;
    font-weight: 100;
    text-align: center;
  }
  
  /* Links */
  li a {
    color: black;
    text-decoration: none;
    margin-left: 3rem;
  }
  
  /* Link unter dem Cursor*/
  li a:hover {
    color: rgb(105, 195, 230);
  }