h1 {
  text-align: center;
}

section {
  background-color: var(--alert-color);
  padding: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

section a {
  font-weight: bold;
}

section a:hover {
  text-decoration: underline;
  cursor: pointer;
}

ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  grid-auto-rows: 10rem;
  grid-gap: 1rem;
  margin-top: 3rem;
}

li {
  list-style: none;
  font-size: 1.5rem;
  background-color: var(--table-color);
}

li:hover {
  box-shadow: var(--box-shadow);
  font-size: 1.8rem;
}

li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
