*{
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}


/*-----Page Wrapper-----*/
.wrapper {
    padding: 0.5%;
    min-height: 100vh;
    background-color: rgba(219, 225, 226, 0.8);
}

/*-----Gallery------*/

.wrapper h1 {
  text-align: center;
  margin-top: 50px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px; /* Adjust this value to your desired maximum width */
  margin: 0 auto; /* Center the gallery within its parent container */
  min-height: 400px; /* Adjust this value to your desired minimum height */
}

.gallery div {
  margin: 10px;
  text-align: center;
  flex-basis: calc(20% - 20px); /* Adjust this value to set the width of each image */
}

.gallery img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  border: 1px solid #11111d;
  border-radius: 5px;
}

.gallery span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #555;
}

.link {
	text-align: center;
}

.link a {
	display: inline-block;
	padding: 10px 20px;
	background-color: #007bff;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	margin-right: 10px;
	font-size: 18px;
}

.link a:hover {
	background-color: #0062cc;
}


/*-----Pagination-----*/

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.pagination a, .pagination span {
    padding: 8px 12px;
    margin: 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination span {
    opacity: 0.7;
    color: black;
}

.pagination span.current {
    background-color: #007bff;
    color: white;
    opacity: 1;
}

.pagination form input {
    padding: 8px;
}

@media (max-width: 600px) {
    .pagination a, .pagination span {
        padding: 6px 10px;
        font-size: 14px;
    }
}


/*------Copyright------*/
.copyright{
    width: 100%;
    border-top: 1px solid gray;
    background-color: black;
    color: white;
    text-align: center;
    padding: 0.5% 0;
}
