/* Minimalny reset  */
html
{
  font-size: 16px; /* bazowy rozmiar czcionki */
  font-family: system-ui, sans-serif; /* font systemowy */
  line-height: 1.5; /* lepsza czytelność */
}

*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* <!-- -------------general------------- --> */
body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

h1 {
    text-align: center;
    margin: 30px 0 10px;
}

/* <!-- -------------gallery------------- --> */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;

  @media (min-width: 1200px) {
    grid-template-columns: repeat(2, 1fr);
  }
}

figure {
  margin: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

figure:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

img {
  width: 100%;
  height: auto;
  display: block;
}

figcaption {
  text-align: center;
  font-size: 1rem;
  padding: 10px;
  background-color: #fafafa;
}