body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100vh;
    font-family: Hanken Grotesk;
}
.container {
    display: flex;
    width: 600px;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 1px 0px 20px 2px rgb(0, 0, 0, 0.4);
}
.left {
    background: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
    border-radius: 20px;
    padding: 20px;
    width: 40%;
    text-align: center;
    color: white;
}
.right {
    width: 50%;
    padding: 20px;
}
.score-left {
    padding: 50px;
    width: 74px;
    height: 74px;
    border-radius: 100%;
    box-shadow: inset 1px 1px 12px 0px hsla(256, 72%, 46%, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
}
.big-score {
    color: white;
    font-weight: bold;
    font-size: 60px;
}
.score-icon {
    display: flex;
}
.score {
    display: flex;
    justify-content: space-between;
    background-color: hsla(0, 100%, 67%, 0.1);
    color: hsl(0, 100%, 67%);
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
}
.grey {
    color: rgba(87, 87, 87, 0.997);
}
.score-icon img {
    margin-right: 5px;
}
.black-test {
    color: #222;
    font-weight: bold;
}
.scores-memory {
    color: hsl(39, 100%, 56%);
    background: hsla(39, 100%, 50%, 0.1);
}
.scores-verbal {
    color: hsl(166, 100%, 37%);
    background: hsla(166, 100%, 37%, 0.1);
}
.scores-visual {
    color: hsl(234, 85%, 45%);
    background: hsla(234, 85%, 45%, 0.1);
}
button {
    margin-top: 30px;
    padding: 15px 30px;
    border: none;
    color: white;
    outline: none;
    width: 100%;
    border-radius: 25px;
    background-color: hsl(224, 30%, 27%);
    
}
@media (max-width: 760px) {
    .left {
        width: 100%;
        padding: 0px;
        border-radius: 0px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .right {
        padding: 0px;
        width: 80%;
    }
    .left-text {
        padding: 20px;
        text-align: center;

    }
    .container {
        width: 100%;
        flex-direction: column;
        border-radius: 0px;
        overflow: hidden;
        padding: 0px;
    } 
}
.attribution {
    display: flex;
    text-align: center;
    font-size: 11px;

}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}