body {
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
}

.title {
  margin-bottom: 32px;
}

.container {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap; /* README states that the *text* wraps instead of the items, but I added this to make sure the page looks good on smaller screens */
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item > * {
  max-width: 200px;
}

img {
  width: 100px;
  height: 100px;
}

.title {
  font-size: 36px;
  font-weight: 900;
}

/* do not edit this footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}