body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #1a0b2e 0%, #000000 100%);
  color: white;
  user-select: none;
}

.center-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.lakicc {
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  background: radial-gradient(circle, #ffffff, #3c03869c, #280852);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: lakicc 10.5s linear infinite;
  margin: 0;
}

.deskripcija {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  background: radial-gradient(circle, #ffffff, #3c03869c, #280852);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: lakicc 15s linear infinite;
  margin: 0;
}
.mrezi {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.mrezi a i {
  font-size: 2.5rem;
  color: #c084fc;
  transition: transform 1s ease, color 1s ease, text-shadow 0.3s ease;
  cursor: pointer;
}

.sliki {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 1rem;
}

.sliki img {
  width: 60px;
  opacity: 30%;
  height: auto;
  transition: transform 1s ease, filter 1s ease;
  cursor: pointer;
}

.sliki img:hover {
  transform: scale(1.15);

  opacity: 100%;
}

@keyframes lakicc {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.lakicc,
.deskripcija,
.sliki,
.mrezi {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.lakicc {
  animation: lakicc 10.5s linear infinite, fadeUp 1s ease forwards;
  animation-delay: 0s, 0.2s;
}

.deskripcija {
  animation: lakicc 15s linear infinite, fadeUp 1s ease forwards;
  animation-delay: 0s, 0.9s;
}

.sliki {
  animation-delay: 2s;
}

.mrezi {
  animation-delay: 3s;
}

@media (max-width: 768px) {
  .sliki {
    gap: 1rem;
    margin-top: 2rem;
  }

  .sliki img {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .sliki {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .sliki img {
    width: 40px;
  }
}

.mrezi a i:hover {
  transform: scale(1.2) rotate(5deg);
  color: #ffffff;
  text-shadow: 0 0 10px #c084fc, 0 0 20px #c084fc;
}
