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

body {
  /* Betrifft ganzes Dokument, alle Texte */
  font-family: 'harber';
  /*font-variation-settings: 'slnt' 0, 'VVLM' 10, 'NSSS' 10;*/
  /*background-color: #FFC5F4;*/
  /* display: grid; */
  background: linear-gradient(90deg, #FFC5F4 50%, #1D1D1D 50%);
}


/* Titel */
h1 {
  color: #1D1D1D;
  transform: rotate(15deg);
  position: absolute;
  top: 20vh; left: 10vh;  
  /* animation: my-anim 1s infinite alternate; */
  text-align: center;
  font-variation-settings: 'slnt' 0, 'VVLM' 0, 'NSSS' -10;
  background-color: #FF352A;
  /* margin: 2rem; */
  border-radius: 50px;
  width: 30%;
  height: 50px;
  opacity: 1;
  /*transition: opacity 0.2s ease 0.15s;*/
  font-size: 2vw;
 }

 h2 {
  color: #1D1D1D;
  transform: rotate(-15deg);
  position: absolute;
  top: 50vh; right: 10%;  
  /* animation: my-anim 1s infinite alternate; */
  text-align: center;
  font-variation-settings: 'slnt' 0, 'VVLM' 0, 'NSSS' -10;
  background-color: #FF352A;
  /* margin: 2rem; */
  border-radius: 50px;
  width: 30%;
  height: 50px;
  opacity: 1;
  /*transition: opacity 0.2s ease 0.15s;*/
  font-size: 2vw;
 }

 h3 {
  color: #1D1D1D;
  transform: rotate(145deg);
  position: absolute;
  top: 70vh; right: 15%; 
  /* animation: my-anim 1s infinite alternate; */
  text-align: center;
  font-variation-settings: 'slnt' 0, 'VVLM' 0, 'NSSS' -10;
  background-color: #FF352A;
  /* margin: 2rem; */
  border-radius: 50px;
  width: 30%;
  height: 50px;
  opacity: 1;
  /*transition: opacity 0.2s ease 0.15s;*/
  font-size: 2vw;
 }

 main {
  display: grid;
  height: 100vh;
  align-items: center;
  justify-content: center;

 }

/* Navigation, ganze Liste */
ul {
  list-style: none; /*  Listenpunkte abschalten */
  padding: 0; /* Kein Einzug */
  margin: 0;
  column-count: 4;
  column-width: 8em;
  widows: 3;
  orphans: 3;
  gap: 2em;
  column-rule: 3px dotted #FF352A;
  animation: my-anim 1s infinite alternate;
  
}
.lila {
  color:#FFC5F4;
}


/* Navigation, einzelner Listenpunkt */
ul li {
  font-size: 2.7vw;
  text-align: center;
}

/* Links */
li a {
  color: #1D1D1D;
  text-decoration: none;
}

/* Link unter dem Cursor*/
li a:hover {
  background-color: #FF352A;
  border-radius: 50px;
  width: 30%;
  height: 50px;
  
}
  
  @keyframes my-anim {
    from { font-variation-settings: 'slnt' 0, 'VVLM' -10, 'NSSS' -10;}
    to { font-variation-settings: 'slnt' 0, 'VVLM' 10, 'NSSS' 10;}
  }

  
