*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Hanken Grotesk;
}
body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(221, 100%, 96%);
}
main{
    height:58%;
    display: flex;
    justify-content: space-between;
    background-color: white;
    border-radius: 15px;
}
section{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 15px;
    background-color: purple;
    background-color: hsl(252, 100%, 67%);
    background: linear-gradient(to bottom, hsl(252, 100%, 67%), hsl(241, 81%, 54%));
}
.result{
    font-size: 1rem;
    color: hsl(241, 100%, 89%);
    font-weight: 700;
}
h2{
    color: white;
    text-align: center;
    margin-top: -50px;
    line-height: 50px;
}
.description{
    text-align: center;
    font-size: .9rem;
    margin: 0 20px 15px 20px;
    color: hsl(221, 100%, 96%); 
}
.score{
    height: 130px;
    width: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -30px;
    background: linear-gradient(to bottom,hsla(256, 72%, 46%, 1), hsla(241, 72%, 46%, 0));
}
.score h1{
    font-size: 3.2rem;
    color: white;
}
.score p{
    font-size: .8rem;
    color:hsl(241, 95%, 85%);
}
aside{
    width: 50%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.summary-text{
    width: 73%;
    color: hsl(224, 30%, 27%);
    font-weight: 700;
    font-size: 1.2rem;
}
.score-summary-box{
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: -20px;
    
}
.reaction-box,.memory-box,.verbal-box, .visual-box{
    height: 2.5rem;
    width: 88%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsla(0, 100%, 67%, 0.074);
    margin-bottom:13px ;
    padding: 0 8px 0 8px;
    border-radius: 8px;
    
}
.logo-text-reaction {
    color: hsl(0, 100%, 67%);
    gap: 10px;
    display: flex;
}

.memory-box{
    background-color: hsl(39, 100%, 56%,0.074);
}
.logo-text-memory{
    display: flex;
    gap: 10px;
    color: hsl(39, 100%, 56%);
}

.verbal-box{
    background-color: hsl(210, 100%, 67%,0.074);
}
.logo-text-verbal{
    display: flex;
    gap: 10px;
    color: hsl(166, 100%, 37%);
}

.visual-box{
    background-color: hsla(252, 100%, 67%, 0.074);
}
.logo-text-visual{
    display: flex;
    gap: 10px;
    color: hsl(234, 85%, 45%);
}
.reaction-text,.memory-text,.verbal-text,.visual-text{
    font-weight: 700;
}
.reaction-box .num,.memory-box .num,.verbal-box .num,.visual-box .num{
    color: hsl(224, 30%, 27%);
    font-weight: 700;
}
span{
    color: hsla(224, 30%, 27%, 0.548);
    font-weight: 500;
}
.submit{
    height: 2.2rem;
    width: 75%;
    border-radius: 20px;
    color: white;
    font-weight: 700;
    border: hsl(224, 30%, 27%);
    background-color: hsl(224, 30%, 27%);
    margin-top: -30px;
    cursor: pointer;
}
.submit:focus{
    border: 2px solid white;
}
