#results {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cube, #total {
  border: 2px solid #FFF;
  width: fit-content;
  font-size: 2em;
  padding: 1ch;
  text-align: center;
}
#total {
  background-color: aliceblue;
  color: #444;
  font-weight: 900;
}
#name::before {
  content: "🖊️ "
}
#name {
  margin: 1em 0 1em 0;
  cursor: pointer;
  font-weight: bolder;
}
#name:hover {
  background-color: #777;
}