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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --light-red: hsl(0, 100%, 67%);
    --orangey-yellow: hsl(39, 100%, 56%);
    --green-teal: hsl(166, 100%, 37%);
    --cobalt-blue: hsl(234, 85%, 45%);
    --light-slate-blue: hsl(252, 100%, 67%);
    --light-royal-blue: hsl(241, 81%, 54%);
    --violet-blue: hsla(256, 72%, 46%, 1);
    --persian-blue: 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%);
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    min-height: 100vh;
    background-color: var(--pale-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main {
    max-width: 600px;
    background-color: var(--white);
    display: flex;
    border-radius: 25px;
}

.section {
    padding: 2rem;
}

.resulte {
    background: linear-gradient(to bottom, var(--light-slate-blue), var(--light-royal-blue));
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    width: 50%;
    color: var(--light-lavender);
}

.marks {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background:linear-gradient(to bottom, var(--violet-blue), var(--persian-blue)); ;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.marks+div{
    text-align: center;
}
.marks h1 {
    font-size: 43px;
    color: white;
}
h2 + p{
    text-align: center;
}
.resulte h2{
    color: white !important;
}
.summary {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 1.55rem;
}
.summary h3{
    color: var(--dark-gray-blue);
    font-weight: 700;
}
#summary{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#summary div{
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}

.summary div p{
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.summary div p+p{
    color: var(--dark-gray-blue);
}
.summary div p+p span{
color: gray;
}
button{
    border: none;
    padding: 1rem;
    border-radius: 36px;
    cursor: pointer;
    color: var(--white);
    background-color: var(--dark-gray-blue);
    font-weight: 500;
    font-size: 18px;
}
button:active,button:hover{
    background: linear-gradient(to bottom, var(--light-slate-blue), var(--light-royal-blue));
}
.reaction{
    color:var(--light-red);
    background-color: hsla(0, 100%, 67%,7%);
}
.memory{
    color:var(--orangey-yellow);
    background-color: hsla(39, 100%, 56%,7%) ;
}
.verbal{
    color:var(--green-teal) ;
    background-color: hsla(166, 100%, 37%,7%);
}
.visual{
    color: var(--light-royal-blue);
    background-color: hsla(234, 85%, 45%,7%);
}
@media (max-width:510px) {
    .main{
        /* width: 100%; */
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .resulte{
        width: 100%;
    }
    .summary{
        width: 100%;
    }
}