#content {
    position: relative;
  }
  
  .full-image-wrap {
    position: relative;
    overflow: hidden;
  }
  
  .full-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* Set text color to white */
    width: 100%;
    max-width: 600px; /* Adjust max-width as needed */
    padding: 0 20px;
  }
  
  .header-content h1 {
    font-size: 4em; /* Adjust font size as needed */
    margin-bottom: 10px;
    color: white; 
  }
  
  .header-content p {
    font-size: 2em; /* Adjust font size as needed */
    margin-bottom: 20px;
    color: white; 
  }


  .text-content {
    text-align: center;
    margin-top: 35px;
    padding: 0 20px;
  }
  
  
  .text-content p {
    font-size: 2em;
    color: black;
    line-height: 1.6;
    font-family: URW Chancery L, cursive;
    font-weight: bold;
  }
  
/* Upload Section */
.upload-section {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
}

.section-heading {
    font-size: 4em;
    margin-bottom: 10px;
    color: black;
    font-weight: bold;
    font-family: URW Chancery L, cursive;
}

.section-description {
    font-size: 1.7em;
    color: #666;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: URW Chancery L, cursive;
}

.upload-section input[type="file"],
.upload-section input[type="text"],
.upload-section button {
    margin-bottom: 10px;
    padding: 12px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.upload-section button {
    background-color: #B1907F;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.upload-section button:hover {
    background-color: #8B5E3C;
}

#styleOptions {
    margin-top: 10px;
}

#styleOptions h2 {
    font-size: 2em;
    margin-bottom: 5px;
}

#styleOptions button {
    margin-right: 10px;
    padding: 8px 15px;
    background-color: #B1907F;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#styleOptions button:hover {
    background-color: #8B5E3C;
}
