body {
  font-family: system-ui,sans-serif;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2em;
}

h1 {
 color: #888a; 
 
}

ul.order {
  list-style: none;
  margin: 2em 1em;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8em, 1fr));
  gap: 4em;
}

.order li {
  min-width: 10em;
  padding: 0;
  margin: 0;
  display: grid;
  box-shadow:0 0 12px 0px #8881;
  border-radius: 4px;
}

.order li:not(.ready) {display: none;} */
.order li.done a {color: #8884}

.order a {
  font-weight: bold;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 1em 0;
  font-size: 1.1em;
  color: #888a;
}

.order a:hover {
  color: #888c;
  background-color: #8881;
}

@media (prefers-color-scheme: dark) {
  
  body {background-color: #222;}
  
}