@import url('https://fonts.googleapis.com/css2?family=Handjet&display=swap');




body {
    background: url(./Flower-bg.jpeg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

    font-family: "Arial", sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}




.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 210px;
    margin-bottom: 10px;
}

.title {
    color: #ff1493;
    font-size: 28px;
    margin-top: 0;
    font-family: 'Handjet', sans-serif;
}

.poem-container {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.love-box {
font-family: Arial;
}

button {
    background-color: #ff1493;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ff69b4;
}





/*for falling of love*/


/* Styles for the falling love emojis */
.love-emoji {
    position: absolute;
    animation: fall 5s linear infinite;
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-100vh); /* Adjust the starting position to the top of the viewport */
  }
  
  @keyframes fall {
    0% {
      transform: translateY(-21vh);
      opacity: 1;
    }
    100% {
      transform: translateY(55vh); /* Adjust the ending position to the bottom of the viewport */
      opacity: 0;
    }
  }
  
  
.self {
    text-align: center;
    margin-top: 37px;
}
