body {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 200%;
  margin: 1em;
}

.applist {
  max-width: 40em;
  /* min-width: 10em; */
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(2, 1fr);
}

.appbox {
  padding: 0.3em;
  border: 1px solid black;
  display: block;
  text-decoration: none;
  color: black;
  white-space: nowrap;
  transition: box-shadow 0.3s ease-in-out;
}

.appbox:hover {
  box-shadow: 10px 5px 5px black;
}

.builddate {
  font-weight: lighter;
  font-size: small;
  text-align: end;
}
