@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

body {
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: #000;
  margin: 20px;
  background-color: #d1d1d1;
}

a {
  color: #000666;
  text-decoration: none;
}

p {
  color: #000;
  font-size: 20px;
}

#baneris {
  margin: 10px auto;
  max-width: 400px;
  transition: opacity 0.5s ease;
  opacity: 1;
}

#baneris img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.gallery {
  justify-items: center;
}

button {
  margin-top: 10px;
  padding: 5px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background-color: #444;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #666;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}
