@import url('https://fonts.googleapis.com/css?family=Karla&display=swap');

* {
font-family: Karla;
}


body {
  margin:0;
  background-color: #1F1D2B;
  color: #FDFDFD;
  text-align: center;
  font-size: 18px;
}

div {
  margin:0;
}

/*verändert die Position*/
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
/* makes the navigationmenu fontsize bigger*/
/*haut die Buttons in die Mitte*/
nav {
    width: auto;
    text-align: center;
    margin: 0;
    background-color: black;
}

nav ul{
    font-size: 13px;
    line-height: 1.5em;
}

/* ordnet die Buttons nebeneinander statt untereinander an*/

nav ul li {
    display: inline-block;
    text-align: center;
}

li a {
  display: block;
  color: #78739C;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  display: block;
  color: #FDFDFD;
  position: relative;
  text-align: center;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

.active{
  color:#FDFDFD;
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
