main {
  display: flex;
  gap: 70px;
  font-family: monospace;
  justify-content: center;
}
main h1 {
  font-size: 4rem;
  text-align: right;
}

.grid-container {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 7px 7px;
  font-family: monospace;
}

.grid-item {
  border-radius: 4px;
  width: 75px;
  height: 75px;
  overflow-wrap: break-word;
  border: black solid 2px;
  text-align: center;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-wrap: wrap;
}
.grid-item small {
  font-size: 0.5rem;
  margin-bottom: 10px;
  margin-left: 80px;
}
.grid-item a {
  word-break: break-all;
  color: black;
  text-decoration: none;
}

.done {
  background-color: black;
  border: 2px solid white;
}
.done a {
  color: white;
  text-decoration: none;
  word-break: break-all;
}

.item-1:hover {
  background-color: rgb(255, 166, 32);
  color: rgb(49, 0, 71);
}/*# sourceMappingURL=index.css.map */