/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
  }
  /*
    2. Remove default margin
  */
  * {
    margin: 0;
  }
  /*
    3. Allow percentage-based heights in the application
  */
  html, body {
    height: 100%;
  }
  /*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
  */
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  /*
    6. Improve media defaults
  */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  /*
    7. Remove built-in form typography styles
  */
  input, button, textarea, select {
    font: inherit;
  }
  /*
    8. Avoid text overflows
  */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  /*
    9. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }

  body {
      background-color: #778599;
      font-family: Tahoma, sans-serif;
  }
  
  .container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      height: 50%;
      width: 100%;
  }

  .container-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    height: 50%;
    width: 100%;
}
  
  .card {
      width: 95%;
      height: 90%;
      margin: 10px;
      
  }
  
  .card-title {
      background: #1e201d;
      color: white;
      border-radius: 15px 15px 0 0;
      box-shadow: 1px 1px 5px black;
      border-bottom: none;
      height: 20%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 3vw;
  }
  
  .card-body {
      background: white;
      border-radius: 0 0 15px 15px;
      box-shadow: 1px 1px 5px black;
      height: 80%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  .card-body p {
      font-size: 10vw;
      font-weight:600;  
  }

  .card-body p.blue {
    font-size: 6vw;
    font-weight:600;  
  }

  .red {
      color: #FF1E1E;
  }
   .yellow {
      color: #ff8847;
  }
  .green {
      color: #529f1b;
  }
  .blue {
      color: #1a6b73;
  }
  .purple {
      color: #5a3dae;
  }

  .fa-solid.fa-xmark {
    color: orange;
  }
