@charset "UTF-8";
/* CSS Document */

#SLIDE_BG {
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  backface-visibility: hidden;
  animation: slideBg 12s linear infinite 0s;
  animation-timing-function: ease-in-out;
  background-image: url("img/bkg-1.png"); }

@keyframes slideBg {
  0% {
    background-image: url("img/bkg-1.png"); }
  25% {
    background-image: url("img/bkg-2.png"); }
  50% {
    background-image: url("img/bkg-3.png"); }
  75% {
    background-image: url("img/bkg-4.png"); }
  100% {
    background-image: url("img/bkg-5.png"); } }
/* Change color on hover */
/* line 77, resp.scss */
.navbar a:hover {
  background-color: #ddd;
  color: black; }