#infoContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  text-align: center;
  color: #fff;
  /* White text color for visibility */
  z-index: 10;
  /* Ensure it's above the grid */
  background-color: rgba(0, 0, 0, 1);
  /* Semi-transparent background */
  padding: 20px 0;
  font-family: monospace;
}

#gridContainer {
  position: absolute;
  width: 640px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.cell {
  width: 10px;
  height: 10px;
  flex-grow: 0;
  flex-shrink: 0;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Prevents scrollbars */
  width: 100vw;
  height: 100vh;
  position: relative;
  /* For absolute positioning context */
}
