/* Reset i podstawowe ustawienia */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
  }
  
  /* Nagłówek */
  h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #007bcc;
    width: 100%;
  }
  
  /* Przycisk Pokaż/U­kryj formularz */
  #changeText {
    display: block;
    margin: 0 auto 20px;
    padding: 12px 24px;
    background: #007bcc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  #changeText:hover {
    background: #005fa3;
  }
  
  /* Ukrywanie formularza */
  .hidden {
    display: none;
  }
  
  /* Formularz */
  form {
    max-width: 400px;
    margin: 0 auto 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid}

    /*Karuzela*/
    .carousel {
  position: relative;
  width: 640px;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: calc(640px * 4); /* jeśli masz 4 slajdów */

}

.slideImages {
  width: 640px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;



}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;

}

button.prev { left: 10px; }
button.next { right: 10px; }