* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: olive;
  color: #333;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 40px 20px;
  background-color: #e1f5fe;
  border-radius: 8px;
  margin: 20px;
}

section {
  padding: 20px;
  margin: 20px;
  background-color: white;
  border-radius: 10px;
}

.image-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.image-container img {
  width: 300px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
