<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px;
}

body {
  background-color: hsl(216, 12%, 8%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Overpass", sans-serif;
}

main {
  position: relative;
  background: linear-gradient(to bottom, #222933, #181F27);
  height: 24rem;
  width: 24rem;
  overflow: hidden;
  border-radius: 2rem;
}

.rating-state, .final-state {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
}

.final-state {
  display: none;
  align-items: center;
}

.star-div {
  background-color: hsl(214, 19%, 26%);
  margin-bottom: 2rem;
  width: max-content;
  padding: 0.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center; 
}

.h1-rating-state {
  font-size: 1.7rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  letter-spacing: 0.05rem;
}

.rating-state-desc {
  color: hsl(217, 12%, 63%);
  margin: 0.3rem 0 0.7rem 0;
  font-size: 0.9rem;
}

.rating-options {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.rating-option {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: hsl(214, 19%, 26%);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rating-option:hover {
  background-color: hsl(25, 97%, 53%);
}

.rating-option:hover span {
  color: hsl(213, 19%, 18%);
}

.rating-option input:checked + span {
  color: hsl(213, 19%, 18%); 
}

.rating-option:has(input:checked) {
  background-color: white;
}

.rating-option span {
  color: hsl(217, 12%, 63%);
  font-weight: 700;
  position: relative;
  top: 1.5px;
  line-height: 1; 
}

.rating-option input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.submit-btn {
  padding: 0.7rem 0;
  border: none;
  border-radius: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: hsl(213, 19%, 18%);
  background-color: hsl(25, 97%, 53%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: white;
}

.the-rating-div {
  background-color: hsl(214, 19%, 26%);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin: 2rem;
}

.the-rating {
  color: hsl(25, 97%, 53%);
}

.thank-you-text {
  font-size: 1.8rem;
  color: white;
}

.thank-you-desc {
  text-align: center;
  margin-top: 0.6rem;
  color: hsl(217, 12%, 63%);
  font-size: 0.9rem;
  line-height: 1.4rem;
}</pre></body></html>