@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --font-family-main:'Hanken Grotesk';
}


*{margin: 0;padding: 0;box-sizing: border-box;}

body{
    width: 100vw;
    height: 100vh;
    background-color: hsl(221, 100%, 96%);
    overflow-x: hidden;
}
p{
    font-size: 18px;
}

main{
    width: 100%;
    height: 100%;
    background-color: hsl(221, 100%, 96%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family-main);
}

.container-box{
    width: 630px;
    height: 430px;
    background-color: hsl(0, 0%, 100%);
    display: flex;
    text-align: center;
    border-radius: 22px;
    
}

.left-side{
   width: 50%;
   background-image:linear-gradient(180deg,hsl(252, 100%, 67%),hsl(241, 81%, 54%)) ;
   border-radius: 22px;
   display: grid;
   grid-template-rows: 1fr 2fr 1fr 1fr;
   color: hsl(0, 0%, 100%);;
   padding: 10px !important;
   
}
.row2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.row4{
    padding: 0 1.3rem;
}
.grade{
    width: 150px;
    height: 150px;
    background-image: linear-gradient(180deg,hsla(256, 72%, 46%, 1) 50%,hsla(241, 72%, 46%, 0));
    border-radius: 50%;
}

.right-side{
    width: 50%;
    height: 100%;
    padding: 2rem;
}

.rank{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

h4{
    text-align: left;
    font-weight:bolder;
}

.subject{
    width: 100%;
    height: 2.6rem;
    opacity: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border-radius: 10px;
}
.reaction{
    background-color: hsla(0, 100%, 67%,10%);  
} .reaction-title{color: hsla(0, 100%, 67%,100%); font-weight: bold;}
.memory{
    background-color: hsla(39, 100%, 56%,10%);
}.memory-title{color: hsla(39, 100%, 56%,100%);font-weight: bold;}
.verbal{
    background-color: hsla(166, 100%, 37%,10%);
}.verbal-title{color:hsla(166, 100%, 37%,100%) ; font-weight: bold;}
.visual{
    background-color: hsla(234, 85%, 45%,10%);
}.visual-title{color:hsla(234, 85%, 45%,100%) ;font-weight: bold;}

.continue{
    width: 100%;
    height: 2.9rem;
    border: none;
    border-radius: 30px;
    margin-top: 20px;
    color: hsl(0, 0, 100%);
    background-color: hsl(224, 30%, 27%);
}.btn-text{color: hsl(0, 0%, 100%);}


@media  screen and (max-width:725px) {
    .container-box {
        width: 100%;
        min-height: 100%;
        flex-direction: column;
        border-radius: 0;
    }
    .left-side{
        width: 100%;
        border-radius: 0 0 22px 22px;
        grid-template-rows: 0.5fr 1.8fr 0.5fr 1fr;
    }
    .right-side{
        width: 100%;
    }
    .grade .fs-1 {
        font-size: 50px !important;
    }
}