body {
  background: rgb(178, 218, 250);
}

.rating_parent {
  display: flex;
}

.star {
  width: 50px;
  height: 50px;
  border: 1px solid black;
}

.is-included {
  background-color: goldenrod;
}

.star:hover {
  background-color: goldenrod;
}

.star {
  transition-property: background-color;
  transition-duration: 0.6s;
}
