.container{
  width:100%;
  padding-top:100px;
  padding-bottom:100px;
  background-color:#000;
  text-align:center;
  font-size:20px;
  color:#fff;
}

.coolImage{
  height:17px;
  width:17px;
  margin-left:7px;
  transform:rotate(45)
}

.pointer{
  cursor:pointer;
}

/*
.rotated {
  transform: rotate(45deg);
}
*/

.eyecatcher img {
   -webkit-transition: all 750ms ease;
   -moz-transition: all 750ms ease;
   -ms-transition: all 750ms ease;
   -o-transition: all 750ms ease;
   transition: all 750ms ease;
  
  transform-origin: center center;
}
  
.eyecatcher.rotated img{
   -moz-transform: rotate(360deg);
   -ms-transform: rotate(360deg);
   -o-transform: rotate(360deg);
   -webkit-transform: rotate(360deg);
   transform: rotate(360deg);
}

.navHolder * {
   -webkit-transition: all 750ms ease;
   -moz-transition: all 750ms ease;
   -ms-transition: all 750ms ease;
   -o-transition: all 750ms ease;
   transition: all 750ms ease;
}