
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: black;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .container {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 6rem;
  }
  
  .content {
    margin-bottom: 3rem;
  }
  
  .main-text {
    font-size: 1.875rem;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  
  .main-text2,a {
    font-size: 18px;
    line-height: 1.75rem;
    padding-top: 24px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #fff;

  }
  
  .desktop-break {
    display: none;
  }
  
  .underline-link {
    color: white;
    text-decoration: underline;
    transition: color 0.3s;
  }
  
  .underline-link:hover {
    color: #cccccc;
  }
  
  .button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
  }
  
  .button {
    display: inline-block;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    background-color: transparent;
    transition: background-color 0.3s;
  }
  
  .button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .desktop-break {
      display: inline;
    }
    
    .button-container {
      flex-direction: row;
      justify-content: center;
    }
    
    .logo {
      font-size: 3.75rem;
    }
    
    .main-text {
      font-size: 1.875rem;
    }
  }

  