/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    color: #333;
  }
  
  /* Main container with background */
  .main-container {
    min-height: 100vh;
    background-image: url("pattern-bg.png");
    background-repeat: repeat;
  }
  
  /* Content wrapper */
  .content-wrapper {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  
  /* Text container with glass effect */
  .text-container {
    max-width: 48rem;
    padding: 2.5rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  /* Main heading */
  .main-heading {
    margin-bottom: 1.5rem;
    font-family: "Pacifico", cursive;
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    color: #065f46; /* emerald-800 */
  }
  
  /* Sub heading */
  .sub-heading {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #047857; /* emerald-700 */
  }
  
  /* Responsive styles */
  @media (min-width: 768px) {
    .main-heading {
      font-size: 4rem;
    }
  
    .sub-heading {
      font-size: 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .main-heading {
      font-size: 5rem;
    }
  }
  