body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.box {
  flex: 1 1 300px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  background: #3498db;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.box:hover {
  transform: scale(1.05);
}

.blue-box {
  background: #59a3b8;
}

.green-box {
  background: #066300;
}

h2 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

p {
  font-size: 16px;
  margin-top: 0;
}

img {
  height: 90px;
  border-radius: 10px;
}
