* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: #fff;
    overflow: hidden;
  }
  
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
  }
  
  .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px; /* Add padding for smaller screens */
  }
  
  .title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00ffcc, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .title {
      font-size: 3rem; /* Smaller font size for tablets */
    }
  
    .subtitle {
      font-size: 1.2rem; /* Smaller font size for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .title {
      font-size: 2rem; /* Smaller font size for mobile */
    }
  
    .subtitle {
      font-size: 1rem; /* Smaller font size for mobile */
    }
  }