body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcf2d5;
    color: #333;
    text-align: center;
  }
  
  .container {
    padding: 20px;
    max-width: 900px;
    margin: 60px auto; /* Increased margin at the top */
  }
  
  .string-lights {
    width: 100%;
    /* max-width: 500px; */
    margin: 0 auto 30px; /* More space below string lights */
    display: block;
  }
  

  
  h1 {
    font-size: 46px;
    margin: 20px 0;
    color: #401b02;
  }
  
  h2 {
    font-size: 24px;
    margin: 30px 0 20px;
    color: #444;
  }
  
  p {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0;
  }
  
  .notification {
    font-size: 24px;
  }
  
  .intro {
    margin-top: 7rem; /* Increased margin at the top */
    display: flex;
    align-items: flex-start; /* Align text blocks at the top */
    justify-content: space-between;
    gap: 30px; /* Space between the two sections */
    text-align: left;
  }
  
  .intro p {
    font-size: 18px; /* Consistent font size for both sections */
    margin: 0;
  }
  
  .gift-icon {
    width: 300px;
    height: auto;
    margin-top: 2rem;
  }
  
  @media (max-width: 600px) {
    .intro {
      flex-direction: column;
      text-align: center;
      align-items: center; /* Center-align all child elements */
    }
  
    .gift-icon {
      margin-bottom: 15px;
      align-self: center; /* Ensures the gift icon is centered */
    }
  }
  