body {
    background-color: gray;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
h1 {
    color: red;
    text-align: center;
}
a {
    color: cyan;
    text-decoration:black;
}
a:hover {
    text-decoration: underline;
}
.container {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
  height: auto ;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stratch;
}

.box {
  background-image: url("mead.png");
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin: 10px;
  flex: 1 1 250px;
  aspect-ratio: 2/1;
  transition: all 0.3s ease;
}
.box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgb(0, 0, 0);
}