body {
  background-color: #ccc;
}

.selections {
  display: flex;
  justify-content: center;
}

.selection {
  background-color: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 2rem;
  transition: 100ms;
}

.selection:hover {
  transform: scale(1.2);
}

.results {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  margin: 1rem;
}

.result-score {
  margin-left: 0.1rem;
  font-size: 1rem;
  color: #333;
}

.result-selection {
  opacity: 0.5;
  font-size: 3rem
}

.result-selection.winner {
    opacity: 1;
    font-size: 4rem;
}
