body {
    text-align: center;
    background-image: url('images/entry\ 1_p-design.png'); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    background-position: center; 
    color: darkolivegreen; 
    font-family: "Handlee", cursive;
    padding: 0;
    margin: 0;
  }
  
  h1 {
    font-size: 2.5rem; 
    margin-top: 200px; 
    margin-bottom: 50px;
    text-transform: capitalize; 
  }
  
  p {
    font-size: 1.5rem; 
    margin-top: 200px; 
    margin-bottom: 50px; 
    text-transform: capitalize; 
  }
  
  .word-group {
    display: inline-block; 
    margin-bottom: 20px; 
  }
  
  .handlee-regular {
    font-family: "Handlee", cursive;
    font-weight: 400;
    font-style: normal;
    .image-section {
      display: flex;
      justify-content: center; 
      align-items: center;
      height: 100vh; 
      background-color: #fff; } 
  }
  
  
  .image-text-container {
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    gap: 20px; 
    margin: 300px auto; 
    padding: 0 20px; 
  }
  
  .image-section img {
    width: 5in; 
    height: 5in;
    object-fit: cover; 
    flex-shrink: 0; 
  }
  
  
  .text-section {
    max-width: 50%; 
    font-size: 1.2rem;
    line-height: 1.8; 
    color: darkolivegreen;
  }
  
  
  
  
  .image-section:nth-child(1) img {
    top: 70%; 
    left: 10%;
  }
  
  
  .introduction-text {
    font-size: 1.2rem;
    line-height: -50;
    max-width: 60%; 
  }
  
  
  .image-section:nth-child(2) img {
    top: 50%; 
    left: 10%;
    transform: translate(-50%, -50%);
    left: 0;
  }
  
  .image-section:nth-child(3) img {
    bottom: 10%;
    right: 10%;
  }
  
  
  .falling-flower {
    position: absolute;
    bottom: -10%;
    opacity: 0;
    animation: riseUp 2s ease-in-out infinite, fadein 3s ease-in;
  }
  
  .falling-flower.small {
    width: 30px;
    height: 30px;
  }
  
  .falling-flower.medium {
    width: 50px;
    height: 50px;
  }
  
  .falling-flower.large {
    width: 70px;
    height: 70px;
  }
  
  @keyframes riseUp {
    0% {
        bottom: -10%; 
        opacity: 0; 
    }
    100% {
        bottom: 30%; 
        opacity: 1; 
    }
  }
  
  @keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
  }
  
  .btn {
      display: inline-block;
      padding: 8px 16px;
      margin: 20px;
      text-align: center;
      text-decoration: none;
      color: white; 
      border-radius: 8px; 
      font-size: 16px;
      transition: background-color 0.3s ease;
  }
  
  
  .btn:hover {
      background-color: blanchedalmond; 
  }
  
  .back-btn {
      background-color: lightgrey; 
  }
  
  
  .home-btn {
      background-color: lightgray; 
  }
