* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Overpass", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color:#121417;
  color: #ffffff;
}

/* Main rating page */
.container {
  width: 430px;
  background: linear-gradient(180deg, #252d37, #1a1f26);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.star {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 50%;
  background-color: #1f2730;
  margin-bottom: 15px;
}

.star + p {
  font-size: 30px;
  font-weight: bold;
}

.star + p + p {
  color: #959eac;
  line-height: 1.6;
} 

.ratings {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
}

.ratings div {
  background-color: #262f38;
  color: #959eac;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ratings div:hover {
  background-color: #ffffff;
  color: #121417;
}

a.submit-button {
  display: inline-block;
  text-decoration: none;
  background-color: #fb7413;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  border-radius: 20px;
  color: #121417;
  margin-top: 15px;
  transition: 0.2s;
}

a.submit-button:hover {
  background-color: #ffffff;
  color: #121417;
}

.selected {
  background-color: #fb7413 !important;
  color: #121417 !important;
}

/* Thank you page */
.card {
  width: 420px;
  background: linear-gradient(180deg, #252d37, #1a1f26);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

.card img {
  margin-bottom: 18px;
}

.rating-value {
  color: #fb7413;
  background-color: #262f38;
  padding: 5px 18px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.rating-value + p {
  font-size: 30px;
  font-weight: bold;
}

.rating-value + h2 + p {
  color: #959eac;
  line-height: 1.6;
  text-align: center;
}
