/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
}

/******************************************
/* LAYOUT
/*******************************************/
img{
  display: block;
  margin: 0 auto;
  height: 300px;
}
html, body{
  height: 100%;
  margin: 0;
  padding: 0;
}

body{
  background-image: url('/img/images.jpeg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
         /* New Animation */
  animation: backgroundFade 20s ease-in-out infinite alternate;
}
 
@keyframes backgroundFade {
  0% {
    opacity: 0.98;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.98;
  }
}
 
  




/******************************************
/* ADDITIONAL STYLES
/*******************************************/
