html {
  font-family: sans-serif;
}

body {
  column-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1rem;
  row-gap: 1rem;
}

a {
  align-items: center;
  background-color: blue;
  border-radius: 0.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.5rem;
  text-decoration: none;
}

a img {
  background-color: white;
}

a p {
  font-weight: bold;
  margin: 1rem 0 0 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
