body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: courier;
  background-color: black;
  color: white;
}

#flapGrid {
  display: flex;
  flex-wrap: wrap;
  max-width: 100vw; /* Ensure the grid wraps within the page width */
}

.flap {
  display: inline-block;
  /*padding: 5px 8px;*/
  /*border: 1px solid #ccc;*/
  /*margin: 0;*/
  /*white-space: nowrap;  Prevent text wrapping inside each flap element */
}
