/* this is a comment. add CSS definitions below. */
@media(max-width:767px) {
  /* mobile width css */
  .someClassName {
    color: red;
    text-align: center;
  }
}
@media(min-width:768px) {
  /* desktop width css */
  .someClassName {
    color: red;
    text-align: center;
  }
}
@keyframes kenburns {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  100% {
    transform: scale3d(2, 2, 2) translate3d(0px, 0px, 0px);
    opacity: 0;
  }
}
.newCustomBckgrd {
  animation: kenburns 20s infinite;
}
.affix-spacer {
  height:0 !important;
}
