/* Zarovnání hlavního nadpisu a popisu na střed */
h1, p {
  text-align: center;
}

/* Stylování sekce odběratelů */
section {
  text-align: center;
}

.customer {
  display: inline-block;
  width: 500px;
  margin: 20px;
  vertical-align: top;
}

.customer img {
  max-width: 100%;
  height: auto;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3B8641;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.button:hover {
  background-color: #316735;
}

/* Responzivní nastavení pro mobilní zařízení (šířka menší než 768px) */
@media only screen and (max-width: 768px) {
  .customer {
    width: 100%;
    margin: 10px 0;
  }
  
  .customer img {
    max-width: 90%;
    height: auto;
  }
}