@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,500;0,800;1,700&display=swap');

:root{
    --Lightred: hsl(0, 100%, 67%);
    --Orangeyyellow: hsl(39, 100%, 56%);
    --Greenteal: hsl(166, 100%, 37%);
    --Cobaltblue: hsl(234, 85%, 45%);

    /******* garadients***********/
    --Lightslatebluebg: hsl(252, 100%, 67%);
    --Lightroyalbluebg: hsl(241, 81%, 54%);
    --Violetbluecircle: hsla(256, 72%, 46%, 1);
    --Persianbluecircle: hsla(241, 72%, 46%, 0);

    /*********  neutral  **********/
    --White: hsl(0, 0%, 100%);
    --Paleblue: hsl(221, 100%, 96%);
    --Lightlavender: hsl(241, 100%, 89%);
    --Darkgrayblue: hsl(224, 30%, 27%);

    /************ typography**********/
    ---Fontsizeparagraphs: 18px;
}


/*********** main styles************/

*{
    margin: 0;
    padding: 0;
    font-family: 'Hanken Grotesk', sans-serif;
}


body{
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    font-size: var(---Fontsizeparagraphs);
}

.container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width:550px ;
    margin: 2rem;
}

/********     left side****************/
.left{
    background: linear-gradient(var(--Lightslatebluebg),var(--Lightroyalbluebg));
    border-radius: 25px;
    padding: 1.5rem;
    text-align: center;
    color: var(--Lightlavender);
}

.circle{
    background:linear-gradient(var(--Violetbluecircle), var(--Persianbluecircle));
    border-radius: 100px;
    margin: 15px auto;
    max-width: 100px;
    max-height: 100px;
    padding: 1.5rem;
}

.circle strong{
    font-size: 55px;
    color: white;
}

.circle{
    font-size: 15px;
}


.text h3{
    margin: 10px 0;
}


/************* right side*************/


.right{
    background-color: white;
    border-radius: 25px;
    box-shadow:10px 5px 5px var(--Paleblue);
    padding: 1.5rem;
}

.right h3{
    margin-bottom: 15px;
}


.item{
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.rxn{
    background-color: hsla(0, 100%, 67%, 0.1);
}

.rxn-img {
    display: flex;
}

.rxn-img p {
    color:hsl(0, 100%, 67%) ;
    margin-left: 0.3rem;
}


.memory{
    background-color: hsla(39, 100%, 56%, 0.1);
}

.memory-img {
    display: flex;
}

.memory-img p {
    color:hsl(39, 100%, 56%) ;
    margin-left: 0.3rem;
}

.verbal{
    background-color: hsla(166, 100%, 37%, 0.05);
}

.verbal-img {
    display: flex;
}

.verbal-img p {
    color:hsl(166, 100%, 37%) ;
    margin-left: 0.3rem;
}

.visual{
    background-color: hsla(234, 85%, 45%, 0.1);
}

.visual-img {
    display: flex;
}

.visual-img p {
    color:hsl(234, 85%, 45%) ;
    margin-left: 0.3rem;
}

.contin{
    padding: 0.7rem;
    border: none;
    width: 100%;
    background-color:var(--Darkgrayblue) ;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    margin-top: 0.7rem;
}

.contin:hover{
    background-color: var(--Lightroyalbluebg);
}


/**********    media quieries******************/

@media screen and (max-width:550px){
    .container{
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr;
        margin: 0;
    }

    .left > p{
        margin-top: 1rem;
    }
}