body {
  margin: 0;
  padding: 0;
  font-family: "Cormorant", serif;
  color: #000;
  line-height: 1.5;
  box-sizing: border-box;
  font-size: 1.125rem;
}

.word {
  width: 6rem;
  height: 6rem;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.word-details {
  display: flex;
  cursor: pointer;

  summary {
    list-style: none;
  }
}

.word-details[open] > summary .word {
  background-color: black;
  color: white;
}
