nav {
  position: fixed;
}

.slika {
  transition: 0.5s ease-in-out;
}

.slika:hover {
  transform: scale(0.9);
  border-radius: 10px;
}

.bang {
  position: relative;
  left: -800px;
  animation: drop 2s ease forwards;
}

#homepage-slider {
  animation: rep 50s ease forwards;
}

#menu1-0 {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

@keyframes drop {
  0% {
    opacity: 0;
  }
  70% {
    transform: translateX(900px);
  }
  100% {
    transform: translateX(800px);
    opacity: 1;
  }
}

@keyframes rep {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  20% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  60% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.cid-seQfSb1lee {
  background-attachment: fixed; 
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover; 
}


.item-wrapper:hover {
  opacity: 0.5;
  background-color: black;
}