
:root {
  font-size: 150%;
  font-family: 'Rokkitt'; 
  /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  background: linear-gradient(270deg, #f61772, #fcadd4);
  background-size: 400% 400%;  
  padding: 2rem;
  /* display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; */
}

/* Titel */
header h1 { 
  font-weight: 900;
  font-size: 4rem;
  margin-bottom: 0;
  line-height: 3rem;
  color: rgb(43, 73, 226);
}

h2 { 
  font-weight: 200;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.1rem;
  color: rgb(255, 255, 255);
}
  
  

/* Hier einige Einstellungen fÃ¼r die Navigations-Seite */

.emoji-presentation {
  font-variant-emoji: emoji; /*  noch nicht herausgefunden wie ich das farbige emoji zeigen kann */
}


/* Navigation, ganze Liste */
ul {
  list-style: none; /*  Listenpunkte abschalten */
  padding-left: 0rem; /* Kein Einzug */
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .025rem;
}

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

}

/* Links */
li a {
  color: rgb(43, 73, 226);
  text-decoration: none;
}

/* Link unter dem Cursor*/
li a:hover {
  color: rgb(6, 29, 122);
  font-weight: 900;
  letter-spacing: .0rem;

}

.kaugummi {
  position: fixed;
  bottom: -4px;
  right: -40px;
  transform: rotate(-15deg);
}



/* @keyframes hoverover {
  from { font-weight: 700; }
  to { font-weight: 900; }
} */