@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Overpass", sans-serif;
  font-size: 15px;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #121417;
}

.container {
  width: 100%;
  max-width: 425px;
}

.attribution {
  position: absolute;
  color: #959eac;
  bottom: 20px;
  font-size: 0.8rem;
  text-align: center;
}

.attribution a {
  font-size: 0.8rem;
  color: white;
  text-decoration: none;
}
.attribution a:hover {
  color: #fb7413;
}

.content-area {
  display: flex;
  flex-direction: column;
  background-color: #252d37;
  display: flex;
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 425px) {
  .content-area {
    padding: 20px;
    margin: 0 5%;
  }
}

.starbg {
  width: 50px;
  height: 50px;
  background-color: #3d434d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rated-area {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.rated-area .you-rated {
  background-color: #3d434d;
  padding: 5px 15px;
  border-radius: 20px;
  color: #fb7413;
  margin-top: 25px;
}

.text-area {
  margin-top: 30px;
}
.text-area h1 {
  color: white;
  font-size: 1.7rem;
  margin-bottom: 15px;
}
.text-area p {
  color: #959eac;
}

.text-area.thanks {
  display: none;
  text-align: center;
}

ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 30px 0px;
  color: #959eac;
}
ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3d434d;
  height: 50px;
  width: 50px;
  border-radius: 25px;
  cursor: pointer;
}
ul li:hover {
  background-color: #fb7413;
  color: white;
}
@media screen and (max-width: 425px) {
  ul li {
    height: 40px;
    width: 40px;
  }
}

li.active {
  background-color: #959eac;
  color: white;
}

.btn {
  background-color: #fb7413;
  padding: 10px 0px;
  border: none;
  border-radius: 20px;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover {
  background-color: white;
  color: #fb7413;
}

.back-area {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  display: none;
}

.back {
  color: white;
  background-color: #3d434d;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.back:hover {
  background-color: white;
  color: #fb7413;
}
