

/* this is the logos placement on screen*/
.logo img{
  display: block;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  height: 300px;
}

/* animation*/

.navigation {
 display: flex;
  justify-content: center; 
}

.navlink {
  width: 150px;
  height: 150px;
  background-image: url('Index_Images/NavHomeSprite.png');
  background-repeat: no-repeat;
  animation: playsprite 4.67s steps(112) infinite paused;
}

.navlink:hover {
  animation-play-state: running;
}

@keyframes playsprite {
  from {
    background-position: 0,0;
  }
  to {
    background-position: -16800px 0;
  }
}

.navbox {
  display: block;
  margin-top: 150px;
  width: 150px;
  height: 150px;
  
  text-decoration: none;
}




