body{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: hsl(216, 12%, 8%);
  height: 100vh;
  font-family: Overpass;
}
main{
  width: 80%;
  max-width: 400px;
  aspect-ratio: 6 / 6;
  background-color: hsl(213, 19%, 18%);
  color: #ffffff;
  border-radius: 10px;
  padding: 20px;
}
.star_img{
  background-color: hsl(213, 18%, 24%);
  /* display: inline; */
  width: 16px;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 50%;
  display: flex;
}
p{
  color: hsl(217, 12%, 63%);
}
.rate_buttons{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
}
.rating{
  color: hsl(217, 12%, 63%);
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  background-color: hsl(213, 18%, 24%);
}
.submit_button{
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
.submit_button button{
  width: 98%;
  height: 50px;
  border-radius: 25px;
  border: none;
  color: hsl(216, 12%, 8%);
  background-color: hsl(25, 97%, 53%);
  font-weight: 700;
  letter-spacing: .1rem;
}
.submit_button button:hover{
  background-color: #ffffff;
  cursor: pointer;
}
.rating:focus{
  background-color: #ffffff;
  color: hsl(216, 12%, 8%);
}
.rating:hover{
  background-color: hsl(25, 97%, 53%);
  color: hsl(216, 12%, 8%);
  cursor: pointer;
}
#success{
  width: 80%;
  max-width: 400px;
  aspect-ratio: 6 / 6;
  background-color: hsl(213, 19%, 18%);
  color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.selection{
  background-color: hsl(213, 18%, 24%);
  padding: .5px 2px;
  margin-top: 25px;
  margin-bottom: 20px;
  border-radius: 30px;
}
.selection p{
  color: hsl(25, 97%, 53%);
}
.message{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hidden{
  display: none;
}
.active{
  display: block;
}