*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body {
    background-color: hsl(221, 100%, 96%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Hanken Grotesk, sans-serif;
}
.container {
    max-width: 600px;
    width: 90%;
    border-radius: 15px;
    display: flex;
    box-shadow: 10px 10px 10px hsl(234, 100%, 96%);
}
.left-side {
    border-radius: 15px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px;
    background:linear-gradient(hsl(252, 100%, 67%),hsl(241, 81%, 54%));
    gap: 20px;
}
.circle {
    border: 0px solid blue;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    background: linear-gradient(hsla(256, 72%, 46%, 1),hsla(241, 72%, 46%, 0));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
h1 {
    color: white;
    font-size: 3.5rem;
}
.left-side h2 {
    color: hsl(0, 0%, 100%);
    font-size: 1.5rem;
}
.result {
    font-size: 1.3rem;
    font-weight: bold;
}
.left-side span {
    color: hsla(241, 100%, 89%, 0.972);
}
.left-side p {
    color: hsl(241, 100%, 89%);
    font-size: 1.1rem; 
}
.right-side {
    background-color: hsl(0, 0%, 100%);
    width: 50%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    gap: 10px;
}
.right-side h2 {
    font-size: 1.3rem;
    font-weight: 600;
}
.summary-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.summary-component {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    border-radius: 10px;
    padding: 15px;
}
.left-component {
    display: flex;
    align-items: center;
    gap: 10px;
}
.left-component.reaction {
    color: hsl(0, 100%, 67%);
    
}
.left-component.memory {
    color: hsl(39, 100%, 56%);
}
.left-component.verbal {
    color: hsl(166, 100%, 37%);
}
.left-component.visual {
    color: hsl(234, 85%, 45%);
}
.right-component span {
    color: hsl(223, 23%, 68%);
}
span.obtained {
    color: black;
}
.summary-component.reaction {
    background-color: hsla(0, 100%, 67%, 0.087);
}
.summary-component.memory {
    background-color: hsla(39, 100%, 56%, 0.08);
}
.summary-component.verbal {
    background-color: hsla(166, 100%, 37%, 0.098);
}
.summary-component.visual {
    background-color: hsla(234, 85%, 45%, 0.094);
}

button {
    width: 100%;
    border-radius: 30px;
    border: none;
    color: white;
    background-color: hsl(224, 30%, 27%);
    text-align: center;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
}
button:hover {
    background: linear-gradient(hsl(252, 100%, 67%),hsl(241, 81%, 54%));
    cursor: pointer;
}

@media screen and (max-width:670px) {
    .container {
        width: 100%;
        max-width: 375px;
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
    }
    .left-side,
    .right-side {
        width: 100%;
    }
    .left-side {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }
    .left-side p {
        font-size: 15px;
    }
    .right-side {
        background: linear-gradient(hsla(222, 100%, 96%, 0.502),hsl(0, 0%, 100%));
        border-radius: 0;
    }
}