body {
  background-color: black;
  font-family: Poppins;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow-x: hidden;
}

h1 {
    font-weight: 400;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: green;
  border-radius: 20px;
  border: 2px solid transparent;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #32CD32;
}

html {
scrollbar-width: thin;
scrollbar-color: green transparent;
}


.container {
  text-align: center;
}

.tytuł {
  margin-top: 120px;
  margin-bottom: 20px;
  font-size: 50px;
  color: white;
  text-align: center;
  animation: fadeInDown 1.8s forwards;
  opacity: 0;
  transform: translateY(-50px);
  font-weight: 400;
}

@keyframes fadeInDown {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.tytuł2 {
  margin-top: 500px;
  margin-bottom: 20px;
  font-size: 50px;
  color: white;
  text-align: center;
}


.youtube {
  animation: fadeIn 1.2s forwards;
  opacity: 0;
  margin-bottom: 20px;
  color: white;
  text-align: left;
}

.youtube2 {
  animation: fadeIn 1.2s forwards;
  opacity: 0;
  margin-bottom: 20px;
  color: white;
  text-align: right;
}

.tiktok {
  margin-bottom: 20px;
  margin-top: 1750px;
  color: white;
}

p {
  animation: fadeIn 1.2s forwards;
  opacity: 0;
  font-size: 50px;
  margin: 10px 0;
  color: white;
}

.konteneryt {
  position: absolute;
  right: 60%;
  top: 200px;
  align-items: center;
  justify-content: center;
}

.kontenerytfilmy {
  position: absolute;
  left: 60%;
  top: 200px;
  align-items: center;
  justify-content: center;
}



.video {
  margin-bottom: 20px;
  padding: 10px;
  width: 450px;
  background: transparent;
  box-shadow: 0px 0px 15px #2bff0027;
  border-radius: 8px;
}

.video h2 {
  font-size: 18px;
  color: white;
  text-align: center;
}

.video iframe {
  width: 100%;
  height: 250px; 
  border-radius: 8px;
  box-shadow: 0px 0px 2px #2bff0027;
}

#showMoreBtn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease; 
}

.t1 {
  transform: translateX(-150px);
  animation: fadeInLeft 1.2s forwards;
  opacity: 0;
}

.t2 {
  transform: translateX(-150px);
  animation: fadeInLeft 1.5s forwards;
  opacity: 0;
}

.t3 {
  transform: translateX(-150px);
  animation: fadeInLeft 1.8s forwards;
  opacity: 0;
}

.t4 {
  transform: translateX(-150px);
  animation: fadeInLeft 2.0s forwards;
  opacity: 0;
  font-size: small;
  font-weight: 700;
}

a {
  color: #025202;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

#showMoreBtn {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  font-family: Poppins;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transition: box-shadow 0.3s ease-in-out;
  animation: fadeIn 1.2s forwards;
}

#showMoreBtn i {
  display: inline-block;
  transition: transform 0.6s ease;
}

#showMoreBtn:hover {
  box-shadow: 0px 0px 15px #2bff0027;
}

#showMoreBtn:hover i {
  animation: bounce 1.5s infinite; 
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0); 
  }
  50% {
      transform: translateY(5px); 
  }
}

.kontenertt {
  position: absolute;
  right: 60%;
  top: 600px;
}

@keyframes fadeIn{
  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .tytuł {
    text-align: center;
  }
  .youtube {
    text-align: center;
  }
  .youtube2 {
    text-align: center;
  }
  .konteneryt {
    text-align: center;
    right: 0%;
  }
  .kontenerytfilmy {
    text-align: center;
    position: absolute;
    left: 0%;
    top: 900px;
  }
}