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

body {
  /* Betrifft ganzes Dokument, alle Texte */
  background-color: black;
  font-family: 'ruder plakat';
  letter-spacing: 1px;
  color: white;


.column {
  float: left;
  width: 50%;
  padding: 10px;
  height: 300px;
}

header h1 {
  font-variation-settings: 'YTUC' 900;
}

img {
  width: 100%;
  height: auto;
}

/* Navigation, ganze Liste */
ul {
  list-style: none; /*  Listenpunkte abschalten */
  padding: 0; /* Kein Einzug */
}

/* Navigation, einzelner Listenpunkt */
ul li {
  font-size: 500%;
}

/* Links */
li a {
  color: white;
  text-decoration: none;
  font-variation-settings: 'YTUC' 300;
  transition: all 0.3s ease;
}

/* Link unter dem Cursor*/
li a:hover {
  color: #dfcfb2;
  font-variation-settings: 'YTUC' 900;
  transition: all 0.3s ease;
}