body{
    background-color: black;
    margin: 0;
}

.grid-container{

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr  ;
}

.item1{

  grid-row: 1/2;
  grid-column: 1/3; 
  height: 20em;
  margin-top: 15em;
  margin-left: 2em;
}

.item2{

  grid-row: 1/2;
  grid-column: 3/4;
  height: 20em;
  color: white;
  margin-top: 15em;
  
}

.item3{

  grid-row: 2/3;
  grid-column: 5/6;
  height:20em;
  margin-left: 5em;
  margin-top: 5em;
}

.item4{

  grid-row: 2/3;
  grid-column: 3/4;
  color: white;
  height: 20em;
  margin-top: 5em;
}

.item5{

  grid-row: 3/4;
  grid-column: 1/2;
  height: 20em;
  margin-left: 5em;
  margin-top: 5em;
}

.item6{

  grid-row: 3/4;
  grid-column: 3/4 ;
  color: white;
  margin-top: 5em;
}

.item7{

  grid-row: 4/5;
  grid-column: 5/6;
  margin-right: 2em;
  margin-top: 5em;
}

.item8{

  grid-row: 4/5;
  grid-column: 3/4;
  color: white;
  margin-top: 5em;
}


.item9{
  grid-column: 1/6;
  grid-row: 4/5;
  margin-top: 60em;
}




.navigation { 

    display: flex ;
  
    background-color: white; 
  
    margin: 0%;

   justify-content: flex-end;

  height: 1em;


    
  } 
  
  
  .navigation li { 
  
    list-style-type: none; 
  
  } 
  
   
  
  .navigation a { 
  
    padding: 15px; 
  
    display: inline-block; 
  
    color:white; 
  
    text-decoration: none; 

  padding: 70px;

    font-size: larger;
  } 
  
   

.navigation a:hover, #akt_tab {
    text-decoration: underline;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes fadeInLeft {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  }
  @keyframes fadeInLeft {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  } 

  .fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes fadeInRight {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
    }
    @keyframes fadeInRight {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
    } 

