/* 
  *,
  html,
  body {

      margin: 0;
      padding: 0;
      box-sizing: border-box;
      text-align: center;

      font-size: 62.5%;
  }

  .wrapper {
      width: 100vw;
      height: 100vh;
      background-color: #000;
  }

  .resultHead {
      width: 100%;
      height: 20vh;

      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
  }

  .endCard {
      color: #fff;
      width: 90%;
      height: 45%;
      background-color: rgba(41, 44, 51, 1);
      border-radius: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: auto;
      border: 2px solid green;
      padding-top: 5%;
  }

  .headline {
      font-size: 2.4rem;
      font-family: "Satoshi";

      font-weight: 700;
  }

  .scoreLine {
      font-size: 1.8rem;
      font-family: "Satoshi";
      text-align: center;
      font-weight: 700;
  }

  .scoreLine b {
      font-size: 1.8rem;
      font-family: "Satoshi";
      text-align: center;
      font-weight: 700;
  }

  .scoreCard {
      font-size: 1.8rem;
      font-family: "Satoshi";
      font-weight: 700;
      color: rgba(255, 193, 0, 1);
  }

  .scoreContainer {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: center;

      width: 88.6%;
      height: 40%;
      margin: auto;
      background-color: rgba(41, 44, 51, 1);
  }

  .correctContainer,
  .wrongContainer {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      background-color: #1ecb98;
      width: 33.55%;
      height: 38.55%;
      border-radius: 1rem;

      color: white;
  }

  .wrongContainer {
      background-color: #ff5f6d;
  }

  .headliner {
      font-size: 2rem;
      font-family: "Satoshi";
      font-weight: bolder;
      text-align: center;
  }

  .correct,
  .wrong {
      font-size: 3.5rem;
      font-family: "Satoshi";
      font-weight: bolder;
      text-align: center;
      background: none;
  }  */