
.header {
    /* Transparent overlay for better contrast */
    padding: 1rem 0;
    position: fixed; /* Stick to top */
    top: 0;
    width: 100%;
    z-index: 1000;
    color: rgb(4, 4, 4);
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  
  
  @media (max-width: 768px) {
    body {
      font-size: 16px;
    }
  }

  img {
    max-width: 100%;
    height: auto;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
  }
  
  .navbar li {
    margin: 0 1rem;
  }
  
  .navbar a {
    color: rgb(4, 4, 4);
    text-decoration: none;
  }
  

.celebrations-section {
    padding: 20px;
    text-align: center;
    background-color: #efbbf0;
  }
  
  .celebrations-section h2 {
    font-size: 2.5em;
    color: #f4a261;
    margin-bottom: 20px;
  }
  
  .celebrations-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
  }
  
  .quotes-container {
    margin: 20px 0;
  }

  
  blockquote {
    font-size: 1.5em;
    font-style: italic;
    color: #333;
    margin: 20px auto;
    max-width: 700px;
    border-left: 5px solid #f4a261;
    padding-left: 15px;
  }.celebration-images {
    display: flex;
    flex-direction: column; /* Stacks images vertically */
    align-items: center; /* Centers images horizontally */
    gap: 20px; /* Adds space between the images */
    margin: 30px 0;
  }
  
  .celebration-images img {
    max-width: 50%; /* Reduce the size of the images to 60% of the container width */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  