@font-face {
  font-family: Clip;
  src: url("../fonts/Clip.ttf");
}
@font-face {
  font-family: Rust;
  src: url("../fonts/Rust.ttf");
}
@font-face {
    font-family: 'KickFont';
    src: url("../fonts/kick-font.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

#announcement-box {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 400px;
    height: 95px;
    background-color: #363636;
    padding: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-align: center;
    transition: top 1.8s ease-in-out;
    border-radius: 10px;
  }
  
  #announcement-box.active {
    top: 10%;
  }
  
  #announcement-box.return {
    top: -100%;
    transition: top 1s ease-in-out 1s;
  }
  
  .announcement-content {
    position: relative;
  }
  
  .announcement-content h2 {
    color: rgb(255, 255, 255);
    font-size: 24px;
    margin-top: 0;
  }
  
  .announcement-content p {
    font-size: 16px;
    color: rgb(182, 182, 182);
  }




  /* Neon */
  .sign {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 50%; */
    /* height: 50%; */
    background-image: radial-gradient( ellipse 50% 35% at 50% 50%, #6b1839, transparent );
    transform: translate(-50%, -50%);
    letter-spacing: 2;
    left: 50%;
    top: 20%;
    font-family: "Clip";
    text-transform: uppercase;
    font-size: 6em;
    color: #ffe6ff;
    text-shadow: 0 0 0.6rem #ffe6ff, 0 0 1.5rem #ff65bd, -0.2rem 0.1rem 1rem #ff65bd, 0.2rem 0.1rem 1rem #ff65bd, 0 -0.5rem 2rem #ff2483, 0 0.5rem 3rem #ff2483;
    animation: shine 2s forwards, flicker 3s infinite;
}
@media (max-width: 770px) {
  .sign {
      display: flex;
      flex-direction: column;
      top: 154px;
      font-size: 4em;
  }
}

@keyframes blink {
  0%,
  22%,
  36%,
  75% {
    color: #ffe6ff;
    text-shadow: 0 0 0.6rem #ffe6ff, 0 0 1.5rem #ff65bd,
      -0.2rem 0.1rem 1rem #ff65bd, 0.2rem 0.1rem 1rem #ff65bd,
      0 -0.5rem 2rem #ff2483, 0 0.5rem 3rem #ff2483;
  }
  28%,
  33% {
    color: #ff65bd;
    text-shadow: none;
  }
  82%,
  97% {
    color: #ff2483;
    text-shadow: none;
  }
}

.flicker {
  animation: shine 2s forwards, blink 3s 2s infinite;
}

.fast-flicker {
  animation: shine 2s forwards, blink 8s 1s infinite;
}

@keyframes shine {
  0% {
    color: #6b1839;
    text-shadow: none;
  }
  100% {
    color: #ffe6ff;
    text-shadow: 0 0 0.6rem #ffe6ff, 0 0 1.5rem #ff65bd,
      -0.2rem 0.1rem 1rem #ff65bd, 0.2rem 0.1rem 1rem #ff65bd,
      0 -0.5rem 2rem #ff2483, 0 0.5rem 3rem #ff2483;
  }
}

@keyframes flicker {
  from {
    opacity: 1;
  }

  4% {
    opacity: 0.9;
  }

  6% {
    opacity: 0.85;
  }

  8% {
    opacity: 0.95;
  }

  10% {
    opacity: 0.9;
  }

  11% {
    opacity: 0.922;
  }

  12% {
    opacity: 0.9;
  }

  14% {
    opacity: 0.95;
  }

  16% {
    opacity: 0.98;
  }

  17% {
    opacity: 0.9;
  }

  19% {
    opacity: 0.93;
  }

  20% {
    opacity: 0.99;
  }

  24% {
    opacity: 1;
  }

  26% {
    opacity: 0.94;
  }

  28% {
    opacity: 0.98;
  }

  37% {
    opacity: 0.93;
  }

  38% {
    opacity: 0.5;
  }

  39% {
    opacity: 0.96;
  }

  42% {
    opacity: 1;
  }

  44% {
    opacity: 0.97;
  }

  46% {
    opacity: 0.94;
  }

  56% {
    opacity: 0.9;
  }

  58% {
    opacity: 0.9;
  }

  60% {
    opacity: 0.99;
  }

  68% {
    opacity: 1;
  }

  70% {
    opacity: 0.9;
  }

  72% {
    opacity: 0.95;
  }

  93% {
    opacity: 0.93;
  }

  95% {
    opacity: 0.95;
  }

  97% {
    opacity: 0.93;
  }

  to {
    opacity: 1;
  }
}


.hero-logisek {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: absolute;
  top: 5%;
}

.hero-logisek-text {
  font-family: Rust; 
  font-size: 6em;
  color: #cdcdcd;
  text-shadow: 6px 6px 16px black;
  animation-name: floating;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@media (max-width: 770px) {
  .hero-logisek {
    flex-direction: column;
    top: 50px;
  }
  .hero-logisek-text {
    font-size: 4em;
  }
}

@keyframes floating {
  0% { transform: translate(0,  0px); }
  50%  { transform: translate(0, 10px); }
  100%   { transform: translate(0, -0px); }   
}

.about-image {
  border: solid black 2px;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 1px black;
}
.about-nadpis {
  color: wheat;
}
.about-p {
  color: white;
}
.about-ul {
  color: #d7d7d7;
}



.advertise-boxik {
  height: 150px;
  text-align: center;
  justify-content: center;
  margin-top: 30px;
  display: flex;
  transition: filter 0.3s ease, translateY 0.6s ease, transform 0.6s ease;
}
.advertise-boxik:hover {
  filter: drop-shadow(0px 0px 10px #000000);
  transform: translateY(-2px);
}

.advertise-boxik img {
  height: 127px;
  position: absolute;
  border: #000000 solid 1px;
}

#advertise-effect {
  transition: filter 0.6s ease, translateY 0.6s ease, transform 0.6s ease;
}
#advertise-effect:hover {
  filter: drop-shadow(0px 0px 20px #000000);
  transform: translateY(-1px);
}

.advertise-boxik p {
  z-index: 5;
  bottom: 8px;
  /* left: 386px; */
  position: fixed;
  font-size: 15px;
  /* font-weight: 100; */
  color: #ede2e2;
}

@media (max-width: 520px) {
  #mobile-hide {
    display: none;
  }
}