@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap');

:root{
--Light-red: hsl(0, 100%, 67%);
--redbg: hsl(0, 100%, 67%, 10%);
--Orangey-yellow: hsl(39, 100%, 56%);
--yellowbg: hsl(39, 100%, 56%, 10%);
--Green-teal: hsl(166, 100%, 37%);
--Greenbg: hsl(166, 100%, 37%, 10%);
--Cobalt-blue: hsl(234, 85%, 45%);

--Light-slate-blue-background: hsl(252, 100%, 67%);
--Light-royal-blue-background: hsl(241, 81%, 54%);
--Light-royalbg: hsl(241, 81%, 54%, 10%);

--Violet-blue-circle: hsla(256, 72%, 46%, 1);
--Persian-blue-circle: hsla(241, 72%, 46%, 0);

--White: hsl(0, 0%, 100%);
--Pale-blue: hsl(221, 100%, 96%);
--Light-lavender: hsl(241, 100%, 89%);
--Dark-gray-blue: hsl(224, 30%, 27%);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--Pale-blue);
    font-family: "Hanken Grotesk", sans-serif;
    width: 100vh;

}
main{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--White);
    width: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: .9rem;
    max-width: 30rem;


}

.right-sec{
    background: linear-gradient(var(--Light-slate-blue-background), var(--Light-royal-blue-background));
    width: 100%;
    padding: 2.5rem;
    border-radius: .9rem;
    width: 100%;
}
.right-sec h2{
    font-size: .8rem;
    font-weight: 400;
    color: var(--White);
}
.right-sec .result-score{
    background: linear-gradient(to bottom, var(--Violet-blue-circle), var(--Persian-blue-circle));
    border-radius: 50%;
    margin: 1rem 0;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--White);
}
.right-sec .result-score span{
    font-size: .8rem;
    font-weight: 300;
}

.right-sec .comment h3{
    color: var(--White);
    font-size: 1.2rem;
    margin: .5rem;
}
.right-sec .comment p{
    color: var(--White);
    font-weight: 300;
    font-size: 0.5rem;
}

.left-sec{
    width: 100%;
    padding: 1rem;
    border-radius: .9rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--White);
    gap: .5rem;
    border-radius: .9rem;
}
.left-sec h3{
    align-items: flex-start;
    font-size: 1rem;
     text-align: left;
    font-weight: 700;
}
.left-sec .lists{
    margin: .3rem 0;

}
.left-sec .lists .list{
    background: var(--Green-teal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .8rem 0;
    padding: .1rem ;
    border-radius: .2rem;
}

.left-sec .lists .list span {
    display: flex;
    flex-direction: row;
    font-size: .6rem;
    align-items: center;
    padding: .2rem;

}

.left-sec button{
    border: none ;
    outline: none;
    background: var(--Dark-gray-blue);
    color: var(--White);
    font-size: .8rem;
    font-weight: bold;
    border-radius: 4rem;
    padding: .5rem 0;
    transition: .4s ease-out;
}
img{
    width: 1rem;
    height: 1rem;
    padding-right: .3rem;
}

.first{
    color: var(--Light-red);
}
.second{
    color: var(--Orangey-yellow);
}
.third{
    color: var(--Green-teal);
}
.fourth{
    color: var(--Light-royal-blue-background);
}
.left-sec .lists .list:nth-child(2){
    background-color: var(--yellowbg);
}
.left-sec .lists .list:nth-child(1){
    background-color: var(--redbg);
}
.left-sec .lists .list:nth-child(3){
    background-color: var(--Greenbg);
}
.left-sec .lists .list:nth-child(4){
    background-color: var(--Light-royalbg);
}
.left-sec .lists .list .numbers{
    color: gray;
}
b{
    color: #000;
}
button:hover{
    background: linear-gradient(var(--Light-slate-blue-background), var(--Light-royal-blue-background));
   
}
