body{
    background-color: hsl(221, 100%, 96%);
    font-family: "Hanken Grotesk", sans-serif;
}

.white-card{
    background-color: hsl(0, 0%, 100%);
    border-radius: 30px;
    margin: auto;
    width: 750px;
    height: 500px;
    overflow: hidden;

    position: absolute;
    top: 0; /*if we're to put a value like 10, the box would move 10 (idk the units) downward, to make space at the top*/
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;

    /* horizontal, vertical, blur, spread */
    box-shadow: 10px 20px 12px 5px hsl(222, 100%, 92%);
}


.results{
    background-image: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
    height: 100%;
    width: 50%;
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box; /*calculating width while factoring in the padding*/

    justify-content: center;
    text-align: center;
}

.result-header{
    color:hsl(241, 100%, 89%);
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 35px;
}

.score-circle{
    display: flex;
    flex-direction: column;
    margin: auto; /*auto to horizontally center the element within its container */
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-image: linear-gradient(hsla(256, 72%, 46%, 1), hsla(241, 72%, 46%, 0));
    text-align: center;
    justify-content: center;
}

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

.total-score{
    color:hsl(242, 100%, 84%);
    font-size: 18px;
}

.great{
    padding-top: 20px;
    padding-bottom: 16px;
    color:hsl(0, 0%, 100%);
    font-size: 30px;
    font-weight: 700;
}

.great-desc{
    color:hsl(241, 100%, 89%);
    font-size: 18px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
} 

.summary{
    padding: 40px;
    justify-content: center;
    width: 50%;
    box-sizing: border-box;
}

.summary-header{
    color:hsl(224, 30%, 27%);
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 16px;
}

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

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

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

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

.boxes{
    height: 40px;
    border-radius: 10px;
    /* width: 90%; */
    align-items:center;
    justify-content: space-between;
    display: flex;
    /* gap: 10px; */
    padding: 10px 20px;
    margin-bottom: 14px;
}

.reaction-text{
    color:hsl(0, 100%, 67%);
    font-size: 1.2rem;
    font-weight: 700;
}

.memory-text{
    color:hsl(39, 100%, 56%);
    font-size: 1.2rem;
    font-weight: 700;
}

.verbal-text{
    color:hsl(166, 100%, 37%);
    font-size: 1.2rem;
    font-weight: 700;
}

.visual-text{
    color:hsl(234, 85%, 45%);
    font-size: 1.2rem;
    font-weight: 700;
}

.elements-start{
    justify-content: start;
    display: flex;
    gap: 10px;
}

.elements-end{
    justify-content: end;
    display: flex;
    gap: 10px;
}

.stat{
    color:hsl(224, 30%, 27%);
    font-size: 18px;
    font-weight: 700;
}

.stat-total{
    color:hsla(224, 30%, 27%, 0.5);
    font-size: 18px;
    font-weight: 700;
}

.continue-button{
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 16px 40px;
    border-radius: 40px;
    margin-top: 26px;

    background-color:hsl(224, 30%, 27%);
    color:hsl(0, 0%, 100%);
}

.continue-button:hover{
    background-image: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
    color: hsl(0, 0%, 100%);
    cursor: pointer;
}

@media screen and (max-width: 600px){
    .white-card {
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
    }
    .results {
      width: 100%;
      height: 50%;
    }
    .summary {
      width: 100%;
      height: 50%;
    }
  }