
@font-face{
    font-family:'Hanken Grotesk';
    src: url(assets/fonts/HankenGrotesk_VariableFont_wght.ttf) format('truetype');
    font-weight: 500,700,800;

}

body{
    background-color: hsl(221, 100%, 96%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;

    font-family:'Hanken Grotesk';
    font-weight: 500;
    font-size: 18px;
}

.container{
    display: flex;
    width: 750px;
    height: auto;
    border-radius: 30px;

    background-color:hsl(0, 0%, 100%);
}

.left-container, 
.right-container {
    width: 50%;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.left-container{
    background:-moz-linear-gradient(hsl(252, 100%, 67%),hsl(241, 81%, 54%));
    border-radius: 30px;
}

h2{
    color: hsl(221, 100%, 96%);
}

.circle{
    background: -moz-linear-gradient(hsla(256, 72%, 46%, 1),hsla(241, 72%, 46%, 0));
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.big{
    color:hsl(0, 0%, 100%);
    font-weight: 800;
    font-size: 65px;
    margin-bottom: 0px;
    margin-top: 15px;
}

.small{
    color: hsl(241, 100%, 89%);
    margin-top: 0px;
}

h3{
    color:hsl(0, 0%, 100%);
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 0%;
}

p{
    color: hsl(241, 100%, 89%);
    text-align: center;
    width: 250px;
}

.right-container{
    background-color:hsl(0, 0%, 100%);
    border-radius: 30px;
    display: flex;
    align-items: baseline;
}

h4{
    font-size: 28px;
    margin-top: 21px;
    color:hsl(224, 30%, 27%);
}

.summary-list{
    list-style: none;
    margin: 0%;
    padding: 0%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.summary-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
}

.reaction{
    background-color: hsla(0, 100%, 67%,0.07);
}

.reaction .label{
    color: hsl(0, 100%, 67%);
    width: 65%;
}

.score{
    color:hsl(224, 30%, 27%);
}

.score-light {
    color:hsla(224, 30%, 27%,0.5);
}

.icon{
    display: block;
    height: 20px;
    width: 20px;
}

.memory .label{
    color: hsl(39, 100%, 56%);
    width: 65%;
}

.memory{
    background-color:hsla(39, 100%, 56%,0.07);
}

.verbal .label{
    color: hsl(166, 100%, 37%);
    width: 65%;
}

.verbal{
    background-color: hsla(166, 100%, 37%,0.07);
}

.visual .label{
    color: hsl(234, 85%, 45%);
    width: 65%;
}

.visual{
    background-color: hsla(234, 85%, 45%,0.07);
}

.button-continue{
    outline: none;
    border: none;
    background: hsl(224, 30%, 27%);
    height: 56px;
    width: 100%;
    border-radius: 28px;
    margin-top: 2rem;
    color: hsl(221, 100%, 96%);
    font-size: 18px;
    font-weight: 500;
    font-family:'Hanken Grotesk' ;

    transition: transform 0,3s ease;
    transform: scale(1);
}

.button-continue:hover{
    background: linear-gradient(hsl(252, 100%, 67%),hsl(241, 81%, 54%));
    transform: scale(1.02);
}

.button-continue:active{
    background: linear-gradient(hsl(252, 100%, 67%),hsl(241, 81%, 54%));
    transform: scale(0.98);
}

.attribution{
    margin-top: 10px;
    color: hsl(224, 30%, 27%);
}
.attribution a:link,
.attribution a:visited{
    margin-top: 10px;
   
    color: hsla(224, 30%, 27%,0.7);
}

