.pagination {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
}
.pagination button {
  width: 40px;
  height: 40px;
  background: #ffffffa4;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  font-family: 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
  transition: background 0.2s;
}
@media (max-width: 300px) {
.pagination {
  flex-wrap: wrap;
}
}
.pagination button:hover {
  background: #43b2fc50;
}
.pagination .active {
  background: #4db8ff;
  color: white;
  box-shadow: 0 0 7px #4db8ff;
}

