*{
    font-family: 'Overpass',sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(216, 12%, 8%);
}

.rate-box, .thank-box{
    background-color: hsl(213, 19%, 18%);
    border-radius: 20px;
    padding: 30px;
    width: 360px;
}

.rate-box img{
    background-color: hsla(216, 12%, 8%, 0.253);
    padding: 0.8em;
    border-radius: 50%;
}

h2{
    color:  hsl(0, 0%, 100%);
}

p{
    color: hsl(216, 12%, 54%);
}

ul{
    margin-left: -40px;
    margin-bottom: 1.3em;
    margin-top: 1.3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li{
    list-style: none;
    
}

li .btn{
    cursor: pointer;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: hsla(216, 12%, 8%, 0.253);
    color: hsl(0, 0%, 100%);
}

li .btn:hover{
    background-color: hsl(25, 97%, 53%);
    transition: .4s;
}

li .btn:focus{
    background-color: hsl(217, 12%, 63%);
}

#btn-submit{
    margin-top: 12px;
    width: 100%;
    border: none;
    border-radius: 20px;
    height: 40px;
    color: hsl(0, 0%, 100%);
    letter-spacing: 0.2em;
    font-weight: 700;
    background-color: hsl(25, 97%, 53%);
    cursor: pointer;
    transition: 0.3s;
    
}

#btn-submit:hover{
    color: hsl(25, 97%, 53%);
    background-color: hsl(0, 0%, 100%);
}

.thank-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-box div{
    display: block;
    margin-top: 35px;
    
    border: none;
}

.thank-box div> p:first-child{
    text-align: center;
    border-radius: 30px;
    padding: 7px 20px;
    color: hsl(25, 97%, 53%);
    background-color: hsla(216, 12%, 8%, 0.253);
}

.thank-box p:last-child{
    text-align: center;
    margin-top: -9px;
}

.hidden{
    display: none;
}

.thank-box h1{
    margin-top: 13px;
    color:hsl(0, 0%, 100%);;
}