body{
    background-color: hsl(216, 12%, 8%);
    font-family: "Overpass", sans-serif;
}

.rating-container{
    background-color: hsl(213, 19%, 18%);
    border-radius: 50px;
    margin: auto;
    width: 400px;
    height: 400px;
    overflow: hidden;

    position: absolute;
    top: 0; /*if we're to put a value like 10, the box would move 10 (idk the units) downward, to make space at the top*/
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;

    align-content: center;
}

.star-icon{
    background-color: hsl(212, 15%, 24%);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;

    justify-content: center;
    align-items: center;
}

.question{
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    font-size: 35px;
    padding-top: 30px;
    padding-bottom: 20px;
}

.desc{
    color: hsl(217, 12%, 63%);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 20px;
}

.rating-numbers{
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.rating-button{
    background-color: hsl(212, 15%, 24%);
    color: hsl(217, 12%, 63%);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    border: none;

    justify-content: center;
    align-items: center; 
}

.rating-button:hover{
    background-color: hsl(25, 97%, 53%);
    color:hsl(216, 12%, 8%);
    cursor: pointer;
}

.rating-button-clicked{
    background-color: hsl(0, 0%, 100%);
    color:hsl(216, 12%, 8%);
}

.submit-button{
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 15px 40px;
    border-radius: 40px;
    letter-spacing: 0.1rem;
    border: none;
    width: 100%;
    
    background-color:hsl(25, 97%, 53%);
    color:hsl(216, 12%, 8%);
}

.submit-button:hover{
    background-color: hsl(0, 0%, 100%);
    cursor: pointer;
}

.hide{
    display: none;
}

.appear{
    display: block;
}

.thank-you-state{
    justify-content: center;
    text-align: center;
    align-items: center;
}

.thank-you-image{
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.final-rating{
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 40px;
    width: fit-content;
    margin: auto;
    
    background-color:hsl(212, 15%, 24%);
    color:hsl(25, 97%, 53%);
}

.thank-you{
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    font-size: 35px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.appreciate{
    color: hsl(217, 12%, 63%);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
}