@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Overpass:wght@400;700&display=swap");
body {
  font-family: "Overpass";
  margin: 0;
  min-height: 100vh;
  background-color: hsl(228, 11%, 9%);
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  color: white;
  font-size: 28px;
}

p {
  margin-top: 8px;
  color: hsl(217, 12%, 63%);
  font-size: 15px;
  line-height: 150%;
}

.rating {
  box-sizing: border-box;
  background: radial-gradient(circle at top, hsl(215, 19%, 18%) 0%, hsl(215, 27%, 12%) 100%);
  border-radius: 26px;
  height: 412px;
  width: 412px;
  padding: 32px;
  padding-bottom: 28px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rating .star {
  width: 50px;
  height: 50px;
  background-color: hsl(215, 19%, 18%);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.rating h1 {
  margin-bottom: 0;
}
.rating .numbers {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.rating .numbers button {
  font-family: "Overpass";
  background-color: hsl(215, 19%, 18%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: none;
  height: 50px;
  width: 50px;
  color: hsl(217, 12%, 63%);
  font-size: 15px;
  cursor: pointer;
}
.rating .numbers button:hover {
  background-color: hsl(25, 97%, 53%);
  color: white;
}
.rating .numbers .active {
  background-color: hsl(216, 12%, 54%);
  color: white;
}
.rating .submit {
  margin-top: 18px;
  background-color: hsl(25, 97%, 53%);
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  border: none;
  border-radius: 24px;
  width: 100%;
  padding: 14px;
  cursor: pointer;
}
.rating .submit:hover {
  background-color: white;
  color: hsl(25, 97%, 53%);
}

.thank-you {
  box-sizing: border-box;
  background: radial-gradient(circle at top, hsl(215, 19%, 18%) 0%, hsl(215, 27%, 12%) 100%);
  border-radius: 26px;
  height: 412px;
  width: 412px;
  padding: 32px;
  padding-bottom: 28px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.thank-you img {
  margin: 12px;
  width: 160px;
}
.thank-you h1 {
  text-align: center;
  margin-bottom: 8px;
}
.thank-you p {
  text-align: center;
}
.thank-you .selected-msg {
  margin-top: 16px;
  background-color: hsla(25, 97%, 53%, 0.1);
  border-radius: 24px;
  padding: 8px 16px;
  color: hsl(25, 97%, 53%);
}

.hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */