body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: hsl(221, 100%, 96%);
    font-family: 'Hanken Grotesk', sans-serif;
}

.container {
    display: flex;
    background: hsl(0, 0%, 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1440px;
    width: 100%;
    margin: 25%;
}

.result {
    background: linear-gradient(180deg, hsl(252, 100%, 67%), hsl(241, 81%, 54%));
    color: hsl(0, 0%, 100%);
    padding: 40px;
    text-align: center;
    flex: 1;
    position: relative;
    border-radius: 20px;
}

.result h2 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 500;
}

.result .score {
    font-size: 4em;
    margin: 20px 0;
    font-weight: 800;
    background: linear-gradient(180deg, hsla(256, 72%, 46%, 1), hsla(241, 72%, 46%, 0));
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.result .status {
    font-size: 1.5em;
    margin: 10px 0;
    font-weight: 700;
}

.result .description {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 500;
}

.summary {
    padding: 40px;
    flex: 1;
}

.summary h3 {
    margin: 0;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: hsl(224, 30%, 27%);
}

.summary .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.summary .item i {
    margin-right: 10px;
}

.summary .item .label {
    display: flex;
    align-items: center;
    font-size: 1em;
    font-weight: 500;
}

.summary .item .score {
    font-size: 1em;
    font-weight: 700;
}

.summary .item.reaction {
    background-color: hsla(0, 100%, 67%, 0.1);
}

.summary .item.memory {
    background-color: hsla(39, 100%, 56%, 0.1);
}

.summary .item.verbal {
    background-color: hsla(166, 100%, 37%, 0.1);
}

.summary .item.visual {
    background-color: hsla(234, 85%, 45%, 0.1);
}

.summary .button {
    display: block;
    width: 100%;
    padding: 15px;
    background: hsl(224, 30%, 27%);
    color: hsl(0, 0%, 100%);
    text-align: center;
    border-radius: 25px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 700;
}

.summary .button:hover {
    background: linear-gradient(180deg, hsl(252, 100%, 67%), hsl(241, 81%, 54%));
}

span{
   color: hsla(250, 8%, 16%, 0.5);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        margin: 0;
        width: 100%;
        border-radius: 0;
        height: 100vh;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .result {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .result h2 {
        font-size:  1em; 
    }

    .result .score {
        font-size: 3em;
        width: 120px; 
        height: 120px;
    }

    .result .status {
        font-size: 1.2em; 
    }

    .result .description {
        font-size: 16px; 
    }

    .summary {
        padding: 20px; 
    }

    .summary h3 {
        font-size: 1em; 
    }

    .summary .item {
        padding: 10px; 
    }

    .summary .button {
        padding: 10px; 
        font-size: 1em; 
        margin: 0 auto;
        display: block;
        width: 70%;

    }
}
