@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
*{
     margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}
body{ 
    font-family: 'Segoe UI', sans-serif; 
    color: #191919;
}
.first{
    min-height: 90vh;
}
header{
  height: 80px; /* dowolna stała wartość */
}
.first h2{
    font-size: 40px;
     text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.6),    /* podstawowy cień */
        0 0 10px rgba(255, 255, 255, 0.2), /* lekka poświata */
        0 0 20px rgba(255, 255, 255, 0.5);   /* kolorowy efekt */
}
.first h4{
    font-size: 18px;
     text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.6),    /* podstawowy cień */
        0 0 10px rgba(255, 255, 255, 0.2), /* lekka poświata */
        0 0 20px rgba(255, 255, 255, 0.5);   /* kolorowy efekt */
}
.map iframe{
    width: 900px;
    height: 700px;
    box-shadow: 0 0 20px rgba(25, 25, 25,0.5);
    border-radius: 10px;
}
.map{
    top: 450mm;
    
}
.butt{
    background-color: rgba(84,84,84,0.8);
    transition: .3s ease-in-out;
}
.butt:hover{
    transform: translate(0px, -15px);
}
@media(max-width:575px){
   
    .map iframe{
        width: 350px;
        height: 200px;
       
    }
 
}

@media(max-width:900px){
   
    .map iframe{
        width: 450px;
        height: 300px;
       
    }

}


@media(max-width: 390px){
   
    .map iframe{
        width: 250px;
        height: 140px;
       
    }
   
  }


/* chyba jest to nie potrzebne ale zostawiam zakomentowane */

/* .gallery-container {
      position: relative;
      max-width: 400px;
      margin: 0 auto;
    }

    .main-image img {
      width: 100%;
      height: auto;
      cursor: pointer;
      border: 4px solid #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .side-images {
      display: flex;
      justify-content: space-between;
      margin-top: -40px;
    }

    .side-images img {
      width: 80px;
      height: auto;
      opacity: 0.7;
      cursor: pointer;
      border: 2px solid #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: opacity 0.2s;
    }

    .side-images img:hover {
      opacity: 1;
    }

    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
    }

    .lightbox .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 36px;
      color: white;
      cursor: pointer;
    }

    .lightbox .prev,
    .lightbox .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 48px;
      color: white;
      cursor: pointer;
      padding: 10px;
      user-select: none;
    }

    .lightbox .prev { left: 20px; }
    .lightbox .next { right: 20px; } */
