body {
  font-family: "Courier New", Courier, monospace;
  width: 60vw;
  margin: auto;
}

#game {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
}

#game > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contextual {
  margin: auto;
}

.grid {
  height: 200px;
  display: flex;
  gap: 4px;
}

.column {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  width: 100px;
  height: 100%;
  border: 2px solid black;
  border-top: none;
  cursor: pointer;
  gap: 4px;
  padding: 4px;
}

.coin {
  border-radius: 100%;
  height: 50%;
  width: 100%;
  background-color: grey;
}

.selected {
  background-color: lightcyan;
}
