/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  @import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap");
  
  body {
    font-family: "Libre Baskerville", serif;
    line-height: 1.6;
    color: white;
    background: #000000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: none;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  h1 {
    font-weight: 700;
    margin: 30px 0;
    color: white;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
  }
  
  /* Logo Styles */
  .logo {
    margin-bottom: 20px;
  }
  
  .logo img {
    height: 180px;
    width: auto;
  }
  
  /* Description Box */
  .description-box {
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0 40px;
    max-width: 800px;
  }
  
  .fund-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: white;
    font-weight: 400;
    letter-spacing: 0.01em;
  }
  
  /* Footer */
  footer {
    margin-top: 60px;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .container {
      padding: 30px 20px;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    .logo img {
      height: 150px;
    }
  
    .fund-description {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .logo img {
      height: 120px;
    }
  
    h1 {
      font-size: 1.7rem;
    }
  
    .fund-description {
      font-size: 1rem;
    }

  }

