:root{
    /* ## Colors */

/* ### Primary */

--Light-red: hsl(0, 100%, 67%);
--Orangey-yellow: hsl(39, 100%, 56%);
--Green-teal: hsl(166, 100%, 37%);
--Cobalt-blue: hsl(234, 85%, 45%);


/* ## Gradients(Background) */

--Light-slate-blue: #7857ff;
--Light-royal-blue: #2e2be9;

/* circle */
--Violet-blue: hsla(256, 72%, 46%, 1);
--Persian-blue: hsla(241, 72%, 46%, 0);



/* ### Neutral */

--White: hsl(0, 0%, 100%); /*for h1 and h2*/
--Pale-blue: hsl(221, 100%, 96%);
--Light-lavender: hsl(241, 100%, 89%);
--Dark-gray-blue: hsl(224, 30%, 27%);

--ff-main:"Hanken Grotesk", sans-serif;
--fs-p:18px;
--fw-p:500;
--fw-h2:700;
--fw-h1:800;
}
/*reset*/
*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-size: var(--fs-p);
    font-family: var(--ff-main);
    background-color: var(--White);
    font-weight: var(--fw-p);
    height: 100vh;
    display: flex;
    justify-content: center;
}

.card-container{
    width: 350px;
    /* width: 90%; */
    margin-inline: auto;
    margin-top: 5rem;
    box-shadow: 20px 14px 20px 5px #E8EEFC;
}
.left,.right{
    padding: 2rem;
}
.left{
    background: linear-gradient(180deg, #7857ff, #2e2be9);
    width: min(95%,350px);
    text-align: center;
    flex-grow: 1;
    flex-shrink: 1;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    display: flex;
    flex-direction: column;
}
.circle{
    background: linear-gradient(70deg, #7857ff, #2e2be9);
    height: 140px;
    width: 140px;
    border-radius: 50%;
    align-self: center;
}
.left h3{
    color: var(--Light-lavender);
    padding: 1rem  0 1.5rem 0;
}
.left .great{
    color: var(--Pale-blue);
}
.left h1{
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--White);
}
.left .full{
    color: rgb(180, 166, 236);
    font-size: 14px;
}
.left .description{
    color: var(--Light-lavender);
    opacity: 0.8;
}
.right{
    width: min(95%,350px);
    flex-grow: 1;
    flex-shrink: 1;
    background-color: var(--White);
}
.data > *{
    display: flex;
    justify-content: space-around;
    border-radius: 1rem;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
}

 .data > *> .score{
     color: rgb(77, 77, 77)
 }

 .hot{
    margin-bottom: 1rem;
 }
.reaction{
    background-color:rgba(255, 87, 87,0.1);
    color:rgb(255, 87, 87);
}
.memory{
    background-color: rgba(255, 176, 31,0.1);
    color: rgb(255, 176, 31);
}
.verbal{
    background-color: rgba(0, 189, 145,0.1);
    color: rgb(0, 189, 145);
}
.visual{
    background-color: rgba(17, 37, 212,0.1);
    color: rgb(17, 37, 212);
}

.button button{
    background-color: rgb(48, 59, 89);
    color: white;
    border: 2px solid rgb(48, 59, 89);
    padding: 1rem 5.5rem;
    border-radius: 2rem;
    font-size: 1.25rem;
}
@media(min-width:710px){
    body{
        align-items: center;
    }
    .card-container{
        width: 700px;
        display: flex;
        border-radius: 1rem;
        overflow: hidden;
    }
    .circle{
        height: 200px;
        width: 200px;
    }
    .left h1{
        margin-top: 1.5rem;
        margin-bottom: 0.25rem;
        color: var(--White);
        font-size: 5rem;
    }
    .left .full{
        font-size: 1.25rem;
    }
}
@media(max-width:350px){
    .left,.right{
        padding: 1rem  0.25rem;
    }
    .card-container{
        width: 300px;
    }
}
