body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #e3f2fd, #bbdefb);
}

header {
  background-color: #2196f3;
  color: white;
  padding: 30px;
  text-align: center;
  border-bottom: 5px solid #1976d2;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  margin: 5px 0 20px;
  font-size: 1.2em;
}

.image-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.image-box {
  width: 130px;
  margin: 10px;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #2196f3;
}

.image-box img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #2196f3;
}

.image-box span {
  display: block;
  padding: 10px;
  background-color: #f1f1f1;
  color: #333;
  font-weight: bold;
}

.image-box:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

footer {
  background-color: #2196f3;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.footer-widgets {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.widget {
  width: 30%;
  margin: 10px 0;
}

.widget h3 {
  margin: 0 0 10px;
}

.widget p {
  margin: 5px 0;
}

.widget a {
  color: #fff;
  text-decoration: underline;
}
