body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.hero {
  background-image: url('https://zygmunt.ovh/images/tlo.jpg'); /* Zamień na swoją grafikę */
  background-size: cover;
  background-position: center;
  height: 300px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f4f4f4;
}

.card {
  width: 250px;
  margin: 20px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-align: center;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card p {
  padding: 15px;
	
}

.single-column {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.single-column h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.single-column p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
}



footer {
  background-color: #222;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;  /* Poziome wyśrodkowanie */
  justify-content: center;  /* Pionowe wyśrodkowanie */
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9em;
}

footer a {
  color: #a5d6ff;
  text-decoration: none;
  margin: 2px 0;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }
  .card {
    width: 90%;
  }
}

