body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

h1 {
  text-align: center;
  margin: 20px 0;
  color: #066dff;
}

.gallery {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: white;
  border: 1px solid #066dff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.card img {
  width: 100%;
  height: 147px;
  object-fit: cover;
  border-radius: 4px;
  object-position: top;
}

.card h2 {
  font-size: 1.2em;
  color: #066dff;
  margin: 10px 0;
}

.card a {
  text-decoration: none;
  color: white;
  background-color: #066dff;
  padding: 10px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease-in-out;
  width: 90%;
}


.card a i {
  font-size: 1.2em;
}

.card a:hover {
  background-color: #6c3ecf;
}

.card:hover {
  transform: scale(1.05);
}

#load-more {
  margin: 20px auto;
  padding: 10px 20px;
  border: none;
  background-color: #066dff;
  color: white;
  font-size: 1em;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease-in-out;
}

#load-more i {
  font-size: 1.2em;
}

#load-more:hover {
  background-color: #6c3ecf;
}


.img-logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

      /* CSS */
.footer {
  text-align: center;
  padding: 10px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background: none;
  margin-top: 20px;
}

.footer p {
  margin: 0;
}