body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  text-align: center;
  background-color: #4c89af;
  color: white;
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

.image-container {
  text-align: center;
  margin: 20px 0;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.eu-img {
  margin-top: 10px;
  width: 40%;
  height: 40%;
  border-radius: 10px;
}
.container-eu-img {
  display: flex;
  justify-content: center;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #4c89af;
  color: white;
  margin-top: 20px;
}

footer p {
  margin: 0;
}

/* Gallery Styles */
.gallery {
  margin-top: 40px;
}

.gallery h2 {
  text-align: center;
  color: #4c89af;
  margin-bottom: 20px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery-container img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dwt-img {
  margin-top: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dwt-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
