/* Optional custom classes */
.modal-bg {
    background-color: rgba(0, 0, 0, 0.5);
  }

  /* Apply Montserrat font to the entire page */
  body {
    font-family: 'Montserrat', sans-serif !important;
  }

  #heroVideo {
    aspect-ratio: 16 / 9;
    max-width: 100%;

  }

  .white-text-logo {
    display: none;
  }

  .bg-transparent .white-text-logo {
    display: block;
  }

  .bg-transparent .main-logo {
    display: none;
  }

  .blog h1, h2, h3 {
    color: #EE52EC;
    font-weight: 600;
  
  }

  .blog h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    line-height: 3rem;
  }

  .blog h2 {
      font-size: 1.5rem;
  }

  .blog p, .blog li {
    color: #333;
    font-size: 1.125rem;
    line-height: 1.75rem;
    
  }

  .blog p, .blog ul {
    padding: 0.5rem 0 2rem 0;
  }

  .blog li {
    /* show bullets */
    list-style-type: disc;
    margin-left: 2.5rem;
  }

  .blog article {
    margin-bottom: 3rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #EE52EC
  }