@import url('https://fonts.googleapis.com/css2?family=Overpass&display=swap');


*{
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    background-color:  hsl(216, 12%, 8%);
    justify-content: center;
    display: flex;
    align-items: center;
}

.whole-box{
    width:450px;
    padding: 25px;
    color: white;
    border-radius: 15px;
    background-color: hsl(213, 19%, 18%);
    font-family: 'Overpass', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; 
}

.star-container{
    border-radius: 50%;
    background-color:  hsl(215, 18%, 25%);
    width: 40px;
  height: 40px;
  display: flex;
   justify-content: center;
    align-items: center;
    margin: 10px;
}

.star{
    height: 17px;
    width: 17px;
}

.question{
    margin: 15px;
    font-weight: 700;
}

.feedback{
    margin: 15px;
    line-height: 1.6;;
    font-weight: 400;
    color: gray;
}
.rate:hover{
background-color: hsl(25, 97%, 53%);
}
.rate{
    background-color: hsl(215, 18%, 25%);
    height: 45px;
    width: 45px;
    color: white;
    border-radius: 50%;
    margin: 10px;
    margin-left: 20px;
    align-items: center;
    font-weight: 700;
}

.btn{
    height: 40px;
    width: 350px;
    border-radius: 20px;
    font-weight: 500;
    font-size: larger;
    margin: 20px;
    background-color: hsl(25, 97%, 53%);
}

.btn:hover{
    background-color: white;
}


.thank-you-img{
    height:100px;
    width: 150px;
    margin: 20px;
}
.result{
    padding: 10px;
    padding-left: 17px;
    background-color: hsl(215, 18%, 25%) ;
    margin: 20px;
    width: 200px;
    height: 40px;
    border-radius: 15px;
    color:  hsl(25, 97%, 53%);
}

.thanks{
    font-weight: 700;
    margin: 10px;
}
.bye{
    line-height: 1.6;;
    font-weight: 400;
    color: gray;
    margin: 10px;
}