body {
      margin: 0%;
      font-family: Arial, sans-serif;
      background-image: url('pexels-eberhardgross-629159.jpg'); /* Замінити на своє зображення */
      background-size: cover;
      background-position: 100%;
      color: #000;
    }
.container {
  padding: 30px;
  text-align: center;
}

.title {
  background-color: rgba(80, 100, 80, 0.7);
  padding: 10px 30px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 40px;
  font-size: 28px;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 200px;
}

.image {
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.image-large {
  width: 300px;
  height: 400px;
}

.image-small {
  width: 200px;
  height: 150px;
  align-self: flex-start;
}

.back-btn {
  margin-top: 40px;
  padding: 10px 20px;
  background-color: #2e4237;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
}