body {
    background-color: black;
    font-family: Poppins;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow-x: hidden;
  }
  
  
  ::-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 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;
    padding: 20px; 
}

.container2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;
    padding: 20px; 
}

.boksikpobieralnia {
    width: 300px;
    height: 400px;
    padding: 20px;
    text-align: center;
    background: linear-gradient(145deg, #0f130f, #0a0d0a); 
    border: none;
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4), -5px -5px 15px rgba(30, 40, 30, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease; 
    animation: fadeInDown 1.2s forwards;
    opacity: 0;
    transform: translateY(150px);
}

.boksikpobieralnia::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 255, 0, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.boksikpobieralnia:hover {
    height: 600px; 
    transform: translateY(-5px); 
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5), -5px -5px 20px rgba(40, 60, 40, 0.15); 
}

.boksikpobieralnia:hover::before {
    opacity: 1; 
}

.boksikpobieralnia img {
    width: 85%;
    height: 200px;
    margin-top: 10px;
    object-fit: contain;
    animation: fadeInDown 1.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.boksikpobieralnia h1 {
    font-size: 24px;
    margin: 10px 0;
    color: white;
    animation: fadeInDown 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.boksikpobieralnia .size {
    font-size: 18px;
    margin: 5px 0;
    color: #666;
    animation: fadeInDown 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.boksikpobieralnia .ukryte {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.472);
    padding: 10px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.472);
    backdrop-filter: blur(8px);
}

.boksikpobieralnia:hover .ukryte {
    transform: translateY(0);
}

.boksikpobieralnia .opis {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
    box-shadow: none;
}

.guziorinny {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out;
}

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

.guziorinny i {
    display: inline-block;
    transition: transform 0.3s ease; 
}

.guziorinny:hover i {
    transform: translateX(5px); 
}

.tekst {
    color: white;
    text-align: center;
    font-size: 50px;
    margin-top: 200px;
    animation: fadeInDown 1.8s forwards;
    opacity: 0;
    transform: translateY(-50px);
}

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