body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px 20px;
  color: #212529;
}

.gallery-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-block: 0;
}

.gallery-container p {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 12px;
  margin-top: 15px;
}

/**
.filter-buttons {

}
**/

.filter-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #6c757d;
  padding: 10px 15px;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #e9ecef;
  color: #212529;
}

.filter-btn.active {
  background-color: #e691ab;
  color: #fff;
}

.gallery-grid {
  display: grid;
  border-image-source: url(pinky_border.png);
  border-image-slice:40%;
  border-image-width:20px;
  border-image-outset:20px;
  border-image-repeat:repeat;
  max-height: 50vh;
  margin: 25px;
  overflow-y: auto;
  grid-template-columns: repeat(auto-fill, minmax(200px, 3fr));
  grid-template-rows: (minmax(200px, 2fr));
  gap: 15px;
  grid-auto-rows: min-content; 
}

.container {
  position: relative;
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  display: block;
  object-fit: cover;
}


.gallery-item {
  max-width: 200px;
  background-color: rgb(255,255,255);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  cursor: url('aero_link__pink.cur'), auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-item:hover .overlay {
  opacity: 0.75;
}

.hidden {
  display: none;
}
