* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Hanken Grotesk", sans-serif;
  }
  
  :root {
    --light-red: hsl(0, 100%, 67%);
    --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%);
    --light-royal-blue: hsl(241, 81%, 54%);
    --violet-blue: hsla(256, 72%, 46%, 1);
    --persian-blue: hsla(241, 72%, 46%, 0);
    --white: hsl(0, 0%, 100%);
    --pale-blue: hsl(221, 100%, 96%);
    --light-lavender: hsl(241, 100%, 89%);
    --dark-gray-blue: hsl(224, 30%, 27%);
  }
  
  body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--pale-blue);
  }
  
  .body-container {
    width: 100%;
    max-width: 375px;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .card1 {
    background: linear-gradient(
      to bottom,
      var(--light-slate-blue),
      var(--light-royal-blue)
    );
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
  }
  
  .result-title {
    color: var(--light-lavender);
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .circle {
    background: linear-gradient(
      to bottom,
      var(--violet-blue),
      var(--persian-blue)
    );
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1.5rem auto;
  }
  
  .circle h1 {
    font-size: 3.5rem;
    font-weight: 800;
  }
  
  .circle small {
    color: var(--light-lavender);
  }
  
  .card1 h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .result-description {
    color: var(--light-lavender);
    font-size: 0.9rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
  
  .card2 {
    padding: 1.5rem;
  }
  
  .summary-title {
    color: var(--dark-gray-blue);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .list ul {
    list-style-type: none;
    padding: 0;
  }
  
  .list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
  }
  
  .left-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .reaction {
    background-color: hsla(0, 100%, 67%, 0.1);
  }
  .memory {
    background-color: hsla(39, 100%, 56%, 0.1);
  }
  .verbal {
    background-color: hsla(166, 100%, 37%, 0.1);
  }
  .visual {
    background-color: hsla(234, 85%, 45%, 0.1);
  }
  
  .reaction .left-content {
    color: var(--light-red);
  }
  .memory .left-content {
    color: var(--orangey-yellow);
  }
  .verbal .left-content {
    color: var(--green-teal);
  }
  .visual .left-content {
    color: var(--cobalt-blue);
  }
  
  .scored {
    color: var(--dark-gray-blue);
  }
  
  .score {
    color: var(--dark-gray-blue);
    opacity: 0.5;
  }
  
  button {
    width: 100%;
    padding: 1rem;
    background-color: var(--dark-gray-blue);
    color: var(--white);
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: var(--light-royal-blue);
  }
  
  @media screen and (min-width: 768px) {
    .body-container {
      display: flex;
      max-width: 700px;
      border-radius: 2rem;
    }
  
    .card1 {
      flex: 1;
      border-radius: 2rem;
    }
  
    .card2 {
      flex: 1;
    }
  
    .circle {
      width: 180px;
      height: 180px;
    }
  
    .circle h1 {
      font-size: 4rem;
    }
  
    .card1 h2 {
      font-size: 1.8rem;
    }
  
    .result-description {
      font-size: 1rem;
    }
  
    .summary-title {
      font-size: 1.4rem;
    }
  
    .list li {
      font-size: 1rem;
    }
  }
  