:root {
  --star-colour: rgb(219, 155, 2);
}
body {
  background-color: #181818;
  color: #ccc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 22px;
}

.content {
  max-width: 1000px;
  margin-inline: auto;
}

.stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0.5em;
  width: fit-content;
  margin-inline: auto;
  padding: 0.25em 1.5em 0.65em;
  background-color: #242424;
  border-radius: 100px;
}

input {
  display: none;
}

/* All labels AFTER the :checked radio button */
input:checked ~ label::before {
    content: '\2605';
    color: var(--star-colour) ;
  }
  
  label::before {
    content: '\2606';
    font-size: 3em;
    line-height: 1;
    color: rgb(58, 58, 58);
    cursor: pointer;
  }
  
  label:hover::before,
  label:hover ~ label::before {
  color: var(--star-colour);
  /* content: '\2606' !important; */
}

label:checked:hover::before {
    color: blue !important;
}


code {
  font-family: 'Source Code Pro', 'Courier New' monospace;
  color: green;
}
