body {
  background-image: url("background.gif");
  background-size: 500px 500px;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

footer {
  font-family: sans-serif;
  font-size: 100px;
  background: #1100f26f;
  text-align: center;
  color: #661b65;
  -webkit-text-stroke: 2px #ed3f5d;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.grid a {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}