:root {
  --orange: hsl(25, 97%, 53%);
  --white: hsl(0, 100%, 100%);
  --grey-500: hsl(217, 12%, 63%);
  --grey-900: hsl(213, 19%, 18%);
  --grey-950: hsl(216, 12%, 8%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Overpass', sans-serif;
}

body {
  background: var(--grey-950);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 380px;
  padding: 20px;
}

.card {
  background: var(--grey-900);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
}

.icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

h1 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 15px;
}

h2 {
  color: var(--white);
  font-weight: 700;
  margin: 20px 0 10px;
}

p {
  color: var(--grey-500);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.ratings {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.rate-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.05);
  color: var(--grey-500);
  cursor: pointer;
  transition: 0.3s;
}

.rate-btn:hover {
  background: var(--orange);
  color: var(--white);
}

.rate-btn.active {
  background: var(--white);
  color: var(--grey-900);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 25px;
  border: none;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--white);
  color: var(--orange);
}

.hidden {
  display: none;
}


.thankyou-state {
  text-align: center;
}

.thank-img {
  width: 150px;
  margin-bottom: 20px;
}

.selected-text {
  background: rgba(255,255,255,0.05);
  color: var(--orange);
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 20px;
}


@media (min-width: 768px) {
  .container {
    max-width: 400px;
  }
}
