html {
  background-color: #aae5a4;
}

select {
  background: #7bc975;
  color: #1a1a1a;
  border: 1px solid #5aad54;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  outline: none;
}

select:hover {
  border-color: #3a8a34;
}

header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

header select {
  margin-left: auto;
}

.images {
  columns: 5;
  gap: 8px;
  width: 100%;
  padding-bottom: 40px;
}

.images img {
  width: 100%;
  margin-bottom: 8px;
  break-inside: avoid;
  border-radius: 8px;
}

.circle-btn {
  background: #7bc975;
  color: #1a1a1a;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}