body {
  font-family: sans-serif;
  background: #f5f5f5;
  text-align: center;
  padding: 2rem;
}

h1 {
  margin-bottom: 2rem;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

a {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  width: 150px;
  text-decoration: none;
  color: black;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

a:hover {
  transform: scale(1.05);
}

img {
  width: 64px;
  height: 64px;
  margin-bottom: 0.5rem;
}
/*
.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-container img {
    max-width: 100%;
    height: auto;
  }

  .image-container span {
    margin-top: 8px;
    font-size: 16px;
  }
*/