body {
  margin: 0;
  background: hsl(193, 96%, 11%);
  color: #fff;
  font-family: 'Anek Latin', sans-serif;
}

header {
  background-color: #B8D5B8;
  color: #012a35;
  padding: 16px;
  text-align: center;
}

main {
  text-align: center;
  padding: 16px;
}

#score {
  display: inline-block;
  position: relative;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 2rem;
  padding: 16px 48px;
  margin: 20px;
  background: #001e26;
}

#score::before {
  content: '🦸‍♀️';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 4px 8px;
  border-radius: 4px;
  background: #B8D5B8;
  color: #012a35;
  font-weight: 500;
  font-size: 1.25rem;
}

#score::after {
  content: '👾';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  padding: 4px 8px;
  border-radius: 4px;
  background: #B8D5B8;
  color: #012a35;
  font-weight: 500;
  font-size: 1.25rem;
}

#result {
  font-size: 2rem;
  font-weight: 500;
}

.choices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.choices button {
  background: transparent;
  border: none;
  padding: 0px 8px;
  cursor: pointer;
}

.choices button img {
  width: 96px;
  height: 96px;
  user-select: none;
}
