body {
  background-color: #f0f0f0; /* jednolity kolor tła */
  /* lub np. */
  background-image: url('zdj5.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
font-family: 'Poppins', sans-serif;
}

header, footer {
  background-color: #0066cc;
  color: white;
  text-align: center;
  padding: 1em 0;
}

main {
  padding: 2em;
}

button {
  padding: 10px 20px;
  background-color: #008000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #005700;
}

.galeria img {
  max-width: 100%;
  height: auto;
  margin-top: 1em;
  border-radius: 10px;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

nav {
  background-color: #eee;
  padding: 10px 0;
  display: flex;
  justify-content: center; /* wyśrodkowanie menu */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px; /* większy odstęp między linkami */
  margin: 0;
  padding: 0;
}

nav ul li {
  /* żeby nie mieć marginesów domyślnych */
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif; /* nowoczesna czcionka */
  transition: color 0.3s ease;
}

nav a:hover {
  color: #007BFF; /* zmiana koloru na niebieski przy hover */
  text-decoration: none;
}

video {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 40px auto;
  border: 3px solid #ccc;
  border-radius: 8px;
}
nav i {
  margin-right: 8px;
  color: #007BFF; /* lub inny kolor ikon */
}
.o-nas-sekcja {
  background-color: #f0f8ff; /* kolor tła - możesz zmienić */
  padding: 30px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.o-nas-sekcja h2 {
  font-size: 2em;
  margin-bottom: 15px;
  text-align: center;
}

.o-nas-sekcja p {
  font-size: 1.2em;
  line-height: 1.8;
  text-align: justify;
}


