* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.msg{
    text-align: center;
    margin-top: 50px;
    font-style: italic;
}
.maindiv {
    width: 100%;
    height: 1000px;
    border: 5px solid orangered;
    background-image: linear-gradient(to right, orange, white, green);
}

.aa {
    margin-top: 60px;
}

.flag1 {
    width: 300px;
    height: 50px;
    border: 1px solid orange;
    border-bottom: none;
    background-color: orange;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 3px 10px 5px rgb(34, 34, 4);
}

.flag2 {
    width: 300px;
    height: 50px;
    border: 1px solid white;
    border-bottom: none;
    background-color: white;
    box-shadow: 3px 10px 5px rgb(34, 34, 4);
}

.ashoka {
    width: 50px;
    height: 52px;
    border-radius: 30px;
}

.flag3 {
    width: 300px;
    height: 50px;
    border: 1px solid green;
    background-color: green;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 3px 10px 5px rgb(34, 34, 4);
}

.in {
    width: 300px;
    height: 35px;
    margin-top: 50px;
    font-size: 15px;
    border: 1px solid orange;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    background-color: antiquewhite;
    text-indent: 6px;
}

.btn {
    width: 80px;
    height: 35px;
    font-size: 15px;
    border: 1px solid orange;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    background-color: antiquewhite;
    cursor: pointer;
    z-index: 10;

}

.btn:hover {
    background-color: rgb(231, 111, 67);
    border: 1px solid black;
}

.content {
    margin-top: 50px;
    padding: 50px;
    width: 100%;
    font-size: 20px;
    text-align: justify;
    font-family: sans-serif;
}

.hello {
    visibility: hidden;
}

/* Style for the flower */
.flower {
    position: fixed;
    top: -50px; /* Start slightly above the screen */
    z-index: 1000; /* Make sure it appears on top of everything */
    font-size: 25px; /* Size of the flower emoji */
    pointer-events: none; /* Let users click through the flowers */
    animation: fall linear forwards; /* 'forwards' keeps it at bottom if needed, but we remove it in JS */
}

/* The falling animation keyframes */
@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(105vh) rotate(360deg); /* Fall past the bottom */
        opacity: 0; /* Fade out at the end */
    }
}


@media(max-width: 395px) {
    .maindiv {
        height: 1200px;
    }

    .in {
        width: 190px;
    }

    .content {
        margin-top: 30px;
        padding: 20px;
    }
}

@media(max-width: 430px) {
    .maindiv {
        height: 1300px;
    }
}

@media(max-width: 768px) {
    .maindiv {
        height: 1320px;
    }
}

@media(max-width: 820px) {
    .maindiv {
        height: 1340px;
    }
}

@media(max-width: 1024px) {
    .maindiv {
        height: 1370px;
    }
}