body {
  font-family: Arial, sans-serif;
  background: #f6f6f6;
  padding: 20px;
}

.search-form {
  text-align: center;
  margin-bottom: 20px;
}

.search-form input {
  padding: 10px;
  width: 300px;
  font-size: 16px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.photo-card {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}

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

.stats {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.load-more {
  display: block;
  margin: 20px auto;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
}
