* {
  margin: 0;
  padding: 0;
}

.wrap {
  font-family: "Overpass", sans-serif;
  font-weight: 100;
  font-size: 15px;
  background-color: hsl(216, 12%, 8%);
  color: #fff;
  width: 100vw;
  height: 95vh;
}

.main-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: hsl(213, 19%, 18%);
  width: 70%;
  height: 45%;
  padding: 15px 25px;
  border-radius: 15px;
}

.thank-you {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: hsl(213, 19%, 18%);
  width: 70%;
  height: 45%;
  padding: 15px 25px;
  border-radius: 15px;
}

.head {
  background: hsl(214, 19%, 24%);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.start-icon {
  margin-top: 11px;
  margin-left: 1px;
}

.ilustration {
  text-align: center;
}

.thank-icon {
  width: 120px;
  height: 80px;
  margin: 15px 0 25px 0;
}

.you-selected {
  font-family: "Overpass", sans-serif;
  font-weight: 100;
  width: 60%;
  color: hsl(25, 97%, 53%);
  background-color: hsl(214, 19%, 24%);
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 0;
  margin: 0 auto 20px auto;
  text-align: center;
}

.previev-title {
  font-size: 25px;
  margin-bottom: 15px;
}

.thank-title {
  font-size: 25px;
  margin-bottom: 30px;
  text-align: center;
}

.preview-text {
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  color: hsl(217, 12%, 63%);
  margin-bottom: 25px;
}

.thank-text {
  font-size: 13px;
  text-align: center;
  line-height: 20px;
}

ul {
  display: flex;
  justify-content: space-between;
}

li {
  list-style: none;
  margin-bottom: 20px;
}

.rating {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: hsl(214, 19%, 24%);
  color: #fff;
}

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

.btn {
  font-family: "Overpass", sans-serif;
  font-weight: 400;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: hsl(25, 97%, 53%);
  border: none;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #181818;
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

@media only screen and (min-width: 768px) {
  .main-body {
    width: 60%;
    height: 60%;
  }
  .head {
    margin: 20px 0 30px 0;
  }
  .previev-title {
    font-size: 35px;
  }
  .preview-text {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 40px;
  }
  li {
    margin-bottom: 35px;
  }
  .rating {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .thank-you {
    width: 60%;
    height: 60%;
  }
  .thank-icon {
    width: 170px;
    height: 120px;
    margin: 20px 0;
  }
  .you-selected {
    width: 50%;
    color: hsl(25, 97%, 53%);
    font-size: 20px;
    margin-bottom: 20px;
  }
  .thank-title {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .thank-text {
    font-size: 17px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .wrap {
    height: 98vh;
  }
  .main-body {
    height: 80%;
  }
  .head {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
  }
  .start-icon {
    width: 25px;
    height: 25px;
  }
  .previev-title {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .preview-text {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 70px;
  }
  .rating {
    transition: 0.2s;
    margin-bottom: 40px;
    cursor: pointer;
  }
  .rating:hover {
    background-color: #fff;
    color: #000;
  }
  .btn {
    cursor: pointer;
    transition: 0.2s;
  }
  .btn:hover {
    background-color: #fff;
  }
  .you-selected {
    width: 30%;
    font-size: 15px;
  }
}
@media only screen and (min-width: 1440px) {
  .main-body {
    width: 40%;
    height: 70%;
  }
  .head {
    width: 65px;
    height: 65px;
    margin-bottom: 40px;
  }
  .start-icon {
    width: 40px;
    height: 40px;
  }
  .thank-you {
    width: 40%;
    height: 80%;
  }
  .thank-icon {
    width: 200px;
    height: 150px;
    margin: 20px 0;
  }
  .you-selected {
    width: 40%;
    font-size: 20px;
    margin-bottom: 40px;
  }
  .thank-title {
    font-size: 70px;
  }
  .thank-text {
    font-size: 35px;
    line-height: 50px;
  }
}