@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&display=swap');

body{
    color: white;
    background-color: black;
    max-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Overpass', sans-serif;
}



h1{
    font-weight: 700;
    margin-bottom: 0.5rem;
}

p{
    font-weight: 400;
    color: hsl(216, 12%, 54%);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.cardBody{
    width: 350px;
    background-color: hsl(216, 12%, 8%);
    padding: 1.5rem;
    border-radius: 1rem;
}



.rating{
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.star{
    display: flex;
    width: 3rem;
    height: 3rem;
    background-color: hsl(213, 19%, 18%);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: hsl(216, 12%, 54%)
}

.button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2rem;
    border-radius: 1rem;
    background-color: hsl(25, 97%, 53%);
    font-size: bold;
}

.button:hover{
    background-color: white;
    color: hsl(25, 97%, 53%);
}

.pointer:hover{
    cursor: pointer;
}

/* .number:hover{
    background-color: hsl(217, 12%, 63%);
    color: white;
} */

.thankCard{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    background-color: hsl(216, 12%, 8%);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
}

.hide{
    display: none;
}

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

.selected{
    background-color: hsl(213, 19%, 18%);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    margin: 2rem 0 1rem 0;
    color: hsl(25, 97%, 53%);;
}

