@font-face {
  font-family: 'HankenGrotesk';
  font-style: normal;
  font-weight: 500;
  src: url('./assets/fonts/static/HankenGrotesk-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'HankenGrotesk';
  font-style: bold;
  font-weight: 700;
  src: url('./assets/fonts/static/HankenGrotesk-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'HankenGrotesk';
  font-style: extra-bold;
  font-weight: 800;
  src: url('./assets/fonts/static/HankenGrotesk-ExtraBold.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --Light-red: hsl(0, 100%, 67%); /* primary */
    --Orangey-yellow: hsl(39, 100%, 56%);
    --Green-teal: hsl(166, 100%, 37%);
    --Cobalt-blue: hsl(234, 85%, 45%);
    --Light-slate-blue: hsl(252, 100%, 67%); /* gradients */
    --Light-royal-blue: hsl(241, 81%, 54%); /*(background)*/
    --Violet-blue: hsla(256, 72%, 46%, 1); /*(circle)*/ 
    --Persian-blue: hsla(241, 72%, 46%, 0); /*(circle)*/ 
    --White: hsl(0, 0%, 100%); /* neutral */
    --Pale-blue: hsl(221, 100%, 96%);
    --Light-lavender: hsl(241, 100%, 89%);
    --Dark-gray-blue: hsl(224, 30%, 27%);
    }

body {
    font-family: 'HankenGrotesk', sans-serif; 
    background-color: var(--Pale-blue);
    display: grid;
    place-content: center;
    min-height: 100vh;
}

.card {
    --padding: 2.5rem;
    --border-radius: 2rem;
    max-width: 46rem;
    font-family: 'HankenGrotesk', sans-serif;
    background-color: white;
    display: grid;   
    box-shadow: .5rem 1rem 3rem;

}

@media (min-width: 600px) {
    .card {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--border-radius);
    margin-inline: 1rem;
    }
}

.container1,
.container2 {
    padding: var(--padding);
}

.container1 {
    background: linear-gradient(to bottom, var(--Light-slate-blue), var(--Light-royal-blue));
    text-align: center;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    
}

@media (min-width: 600px) {
    .container1 {
        border-radius: var(--border-radius);
    }
}


h1 {
    color: var(--Light-lavender);
    font-size: 1.5rem;
    font-weight: 800;
}

h2 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
}

.score-circle {
    background: linear-gradient(to top, var(--Persian-blue), var(--Light-royal-blue));
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-inline: auto;
    text-align: center;
    padding-top: 3.2rem;
    margin-top: 2rem;
}

.ref-number {
    color: var(--Light-lavender);
}

.praise {
    color: white;
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: .5rem;
}

.assessment {
    color: var(--Light-lavender);
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 1rem;
}

.container2 {
    background-color: white;
    border-radius: var(--border-radius);
}

.heading2 {
    font-family: 'HankenGrotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.criteria {
    font-family: 'HankenGrotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    gap: 1rem;
    margin-top: 2rem;
}

.reaction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(250, 239, 239);
    color: var(--Light-red);
    margin-top: 1rem;
    padding: 1rem 1rem;
    border-radius: .5rem;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.score-value {
    color: rgb(162, 162, 170);
}

.score-value strong {
    color: var(--Dark-gray-blue);
}

.memory {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(253, 252, 226);
    color: var(--Orangey-yellow);;
    margin-top: 1rem;
    padding: 1rem 1rem;
    border-radius: .5rem;
}

.verbal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(231, 248, 230);
    color: var(--Green-teal);
    margin-top: 1rem;
    padding: 1rem 1rem;
   border-radius: .5rem;
}

.visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(245, 242, 253);
    color: var(--Violet-blue);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: .5rem;
}

.continue {
    background-color: var(--Dark-gray-blue);
    color: white;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 2.5rem;
    padding: 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.continue:hover {
    background-color: var(--Light-slate-blue);
}

.attribution { 
        font-size: 11px; 
        text-align: center;
        margin-top: 2rem;
    }

.attribution a { 
        color: hsl(228, 45%, 44%); 
    }

    









