* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: hsl(221, 100%, 96%);
    font-family: "Hanken Grotesk", sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.container {
    background-color:hsl(0, 0%, 100%);
    max-width: 600px;
    width: 90%;
    height: 400px;
    display: flex;
    border-radius: 20px;
}

.card-1 {
    background: linear-gradient(
            to bottom, 
          hsl(252, 100%, 67%),
          hsl(241, 81%, 54%));
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: hsl(241, 100%, 89%);
    border-radius: 20px;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.score-circle {
    background: linear-gradient(
            to bottom, 
          hsla(256, 72%, 46%, 1),
          hsla(241, 72%, 46%, 0));
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h3 {
    font-weight:700; 
}

h2 {
    color: hsl(0, 0%, 100%);
}

p {
    font-size: 18px;
}

.score {
    font-size:50px;
    font-weight: 800;
    color: hsl(0, 0%, 100%);
}

.card1-paragraph {
    text-align: center;
}

.card-2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    justify-content: center;
}

.summary-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reaction-container, .memory-container, .verbal-container, .visual-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-weight: 700;
    border-radius: 10px;
}

.icon-container {
    display: flex;
    gap: 10px;
}

.reaction-container {
    background-color:hsla(0, 100%, 67%, 0.06);
}

.memory-container {
    background-color:hsla(39, 100%, 56%,0.06);
}

.verbal-container {
    background-color: hsla(166, 100%, 37%, 0.06);
}

.visual-container {
    background-color:hsla(234, 85%, 45%, 0.06) ;
}

.reaction-title {
    color: hsl(0, 100%, 67%);
}

.memory-title {
    color: hsl(39, 100%, 56%);
}

.verbal-title {
    color: hsl(166, 100%, 37%);
}

.visual-title {
    color: hsl(234, 85%, 45%);
}

.total-score {
    color: hsl(241, 100%, 89%);
}

.continue-button {
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background-color: hsl(224, 30%, 27%);
    color:hsl(0, 0%, 100%);
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
}

.continue-button:hover {
    background-color: hsla(224, 30%, 27%, 0.7);
    color: hsl(0, 0%, 0%);
}


