@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --Orange: hsl(25, 97%, 53%);
    --White: hsl(0, 0%, 100%);
    --LightGrey: hsl(217, 12%, 63%);
    --DarkBlue: hsl(213, 19%, 18%);
    --VeryDarkBlue: hsl(216, 12%, 8%);
    --grey:rgb(77, 73, 73);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body{
    background-color: var(--VeryDarkBlue);
    font-size:2rem;
    color: white;
    font-family: "Overpass", serif;
}
.blocstart{
    display: flex;
    margin: 10rem auto;
    padding: 3rem;
    background-color: var(--DarkBlue);
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 400px;
    border-radius: 3rem;
    p{
        color: var(--LightGrey);
        padding: 2rem 0;
        font-size: 1.5rem;
        line-height: 2rem;
    }
    ul{
        width: 100%;
        display: flex;
        justify-content: space-between;
        list-style: none;
        gap: 3%;
        margin-bottom: 3rem;
    }
    li{
        width: 100%;
        min-width: 20px;
        height: 100%;
        min-height: 20px;
        background-color: var(--grey);
        text-align: center;
        padding: 1.5rem;
        border-radius: 50%;
    }
    li:hover{
        cursor: pointer;
        background-color: var(--Orange);
        color: var(--DarkBlue);
        font-weight: bold;
    }
    .clicked{
        background-color: var(--White);
        color: var(--DarkBlue);
        font-weight: bold;
    }
}
.star{
    width: 5rem;
    height: 5rem;
    background-color: var(--grey);
    padding: 14px;
    border-radius: 50%;
}
button{
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    text-transform: uppercase;
    background-color: var(--Orange);
    border-radius: 10rem;
}
button:hover{
    background-color: white;
    font-weight: bold;
}
.blocend{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10rem auto;
    padding: 3rem;
    background-color: var(--DarkBlue);
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 400px;
    border-radius: 3rem;
    p{
        color: var(--LightGrey);
        padding: 1rem 0;
        font-size: 1.5rem;
        /* line-height: 2rem; */
    }
}

p.selection{
    margin: 4rem 0 2rem 0;
    color: var(--Orange);
    background-color: var(--grey);
    text-align: center;
    height: 100%;
    width: 100%;
    max-width: 20rem;
    border-radius: 3rem;
}
.thanks{
    width: 150px;
    height: 100px;
}
