* {
    font-family: "Hanken Grotesk", serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: hsl(221, 100%, 96%);
}

.container {
    display: flex;
    width: 600px;
    justify-content: center;
    border-radius: 20px;
    background: #ffffff;
}

.left {
    color: #ffffff;
    padding: 20px;
    width: 40%;
    border-radius: 20px;
    background: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
}


.left h4 {
    text-align: center;
    color: hsl(241, 100%, 89%);
    font-size: 20px;
}

.dv-1 {
    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;
}

.sp-1 {
    color: #ffffff;
    font-weight: bold;
    font-size: 60px;
}

.left h3 {
    text-align: center;
    font-size: 28px;
}

.text p {
    text-align: center;
    color: hsl(241, 100%, 89%);
}

.right {
    padding: 20px;
    width: 50%;
}

.right h4 {
    font-size: 20px;
    margin: 20px;
}

.score {
    margin: 20px;
}

.con {
    display: flex;
}

.reaction {
    display: flex;
    justify-content: space-between;
    background-color: hsla(0,100%,67%,0.1);
    color: hsl(0, 100%, 67%);
    padding: 15px;
    border-radius: 5px;
}

.con > span {
    margin-left: 10px;
}

.grey {
    color: gray;
}

.text-2 {
    color: hsl(224, 30%, 27%);
    font-weight: bold;
}

.score .memory {
    margin-top: 20px;
}

.memory {
    display: flex;
    justify-content: space-between;
    background-color: hsla(39, 100%, 56%, 0.1) ;
    color: hsl(39, 100%, 56%);
    padding: 15px;
    border-radius: 5px;
}

.score .verbal {
    margin-top: 20px;
}

.verbal {
    display: flex;
    justify-content: space-between;
    background-color: hsla(166, 100%, 37%, 0.1);
    color: hsl(166, 100%, 37%);
    padding: 15px;
    border-radius: 5px;
}

.score .visual {
    margin-top: 20px;

}

.visual {
    display: flex;
    justify-content: space-between;
    background-color: hsla(234, 85%, 45%, 0.1);
    color: hsl(234, 85%, 45%);
    padding: 15px;
    border-radius: 5px;
}

.score button {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    border-radius: 20px;
    border: none;
    background: hsl(224, 30%, 27%);
    color: #ffffff;
    font-size: 15px;
}

.score button:hover {
    background: linear-gradient(#7857ff, #2e2be9);
}

