
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    margin: 0;
    background-color:#87CEEB;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow:hidden;
    z-index: -2;
}

/* Individual cloud styling */
.cloud {
    position: absolute;
    width: 200px;
    height: 100px;
    background: url("cloulds.png") no-repeat center/contain; /* Replace with your cloud image */
    opacity: 0.8; /* Slightly transparent for a realistic effect */
    animation: moveClouds 30s ease-in-out infinite;
}

/* Add multiple clouds with different starting positions */
.cloud:nth-child(1) {
    top: 20%;
    left: -200px;
    animation-delay: 0s;
}

.cloud:nth-child(2) {
    top: 50%;
    left: -300px;
    animation-delay: 10s;
    width: 250px; /* Larger cloud */
}

.cloud:nth-child(3) {
    top: 70%;
    left: -400px;
    animation-delay: 20s;
    width: 180px; /* Smaller cloud */
}

/* Animation to move clouds across the screen */
@keyframes moveClouds {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(120vw); /* Move the clouds fully across the screen */
    }
}


#useless-button {
    font-size: 20px;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    outline: none;
}

#useless-button:active {
    transform: translateY(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Optional: Add hover effect to make it even more interactive */
#useless-button:hover {
    background-color: #45a049;
}


#response {
    font-size: 18px;
    margin-top: 20px;
    color: #333;
}

/* Flowers container */
#flowers-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%; /* Adjust height to fit flowers */
    overflow: hidden;
    display: flex;
    justify-content: space-around; /* Evenly space the flowers */
    align-items: flex-end; /* Align flowers to the bottom */
    z-index: -1; /* Behind the main content */
}

/* Individual flower styling */
.flower {
    position: relative;
    width: 100px;
    height: 100px;
    background: url("flower.png") no-repeat center/contain; /* Replace with your flower image */
    animation: sway 3s ease-in-out infinite;
    opacity: 0.9; /* Slight transparency for effect */
}

/* Optional animation for swaying effect */
@keyframes sway {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
