@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    font-family: Figtree;
}

body{
    background-color: hsl(0, 0%, 100%);
    font-size: 16px;
    display: flex;
    box-sizing: border-box;
    width: 100%;
    justify-content: center;
    padding: 5rem;
   
}

main{
    background-color: white;
    box-sizing: border-box;
    width: 25vw;
    padding: 25px;
    border-radius: 20px;
}

.points{
    border-radius: 50%;
    width: 9rem;
    height: 9rem;
    margin-left: 6rem;
    padding: 10px;
    background: #fff;
    text-align: center;
    align-items: center;
    background: linear-gradient(hsla(256, 72%, 46%, 1),hsla(241, 72%, 46%, 0))
}


.Result{
    background: linear-gradient(hsl(252, 100%, 67%),hsl(241, 81%, 54%));
    border-radius: 25px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 3em;
    width: 27%;
    box-shadow: 0px 15px 10px -15px hsl(241, 100%, 89%);

    
}

h2{
    font-weight: bolder;
    font-size: 55px;
    padding-top: 30px;
    color: #fff;
}

h3{
    font-weight: bolder;
    font-size: 30px;
    padding-top: 30px;
    color: #fff;
}

p{
    color: hsl(241, 100%, 89%);
    font-size: 18px;
    margin-top: -5px;
    text-align: center;
}

.Reaction{
    color: hsl(0, 100%, 67%);
    background-color: hsl(0, 100%, 67%,0.06);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    
}

.Memory{
    color: hsl(39, 100%, 56%);
    background-color: hsl(39, 100%, 56%,0.06);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.Verbal{
    color: hsl(166, 100%, 37%);
    background-color: hsl(166, 100%, 37%,0.06);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.Visual{
    color:hsl(234, 85%, 45%);
    background-color: hsl(234, 85%, 45%0.1);
    border-radius: 10px;
    padding:20px;
    text-align: center;
    margin-bottom: 20px;
}

.Continue{
    color: hsl(0, 0%, 100%);
    background-color: hsl(224, 30%, 27%);
    border-radius: 25px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;

}

.Continue:hover{
    background:linear-gradient(hsl(252, 100%, 67%),hsl(241, 81%, 54%));
}

.Summary{
    font-size: 25px;
    font-weight: bold;
    color: hsl(224, 30%, 27%);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.summary{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 10px 5px 5px hsl(241, 100%, 89%,0.1);
    padding-right: 6rem;
    margin-left: 6rem;
    
}

.transparent{
    color:hsl(241, 100%, 89%);
}


