body {
    margin: 0;
    font:normal 75% Arial, Helvetica, sans-serif;
  }

  .container {
    position: relative;
    z-index: 2;
    text-align: center;
    overflow: auto;
    pointer-events: none;
  }

  .jumbo {
    background-color: #151d1eb4;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 25px;
    border-color: rgba(214, 175, 134, 0.7);
    border-style: solid;
    border-width: 1px;
    margin-top: 15vh;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: all;
  }
  .jumbo .jumbo-text {
    color: #fff;
    font-size: 100%;
    padding: 15px;
  }

  .corp {
    color: #d6af86;
  }

  .rounded {
    width: 80%;
    max-width: 300px;
    margin: 20px auto;
    color: #d6af86;
  }

  .footer {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 40px;
    padding: 20px 0;
  }
  .footer-text{
    color: #fff;
    text-align: center;
    font-size: larger;
  }

  .email-link {
    color: #d6af86;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
  }
  
  .email-link:hover {
    color: #e8c9a8;
    text-decoration: underline;
  }

  /* Responsive Typography */
  h1 {
    font-size: 2.5rem;
    margin: 10px 0;
  }

  p {
    line-height: 1.6;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .jumbo {
      width: 95%;
      margin-top: 10vh;
      padding: 15px;
    }

    h1 {
      font-size: 2rem;
    }

    .jumbo-text p {
      font-size: 16px;
      padding: 0 5px;
    }

    .jumbo .jumbo-text {
      padding: 10px;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem;
    }

    .jumbo-text p {
      font-size: 15px;
    }

    .footer-text {
      font-size: 12px !important;
    }
    
  }

  /* Optimize particles for mobile */
  @media (max-width: 768px) {
    #particles-js {
      position: fixed;
    }
  }

  /* particles */
  
  canvas {
    display: block;
  }

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 2;
  }