* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url("/img/bacground.png");
}
.whole-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
    
}
div.greetings-div {
    background-image: url(/img/cloud-border_preview_rev_1.png);
    background-repeat: no-repeat;
    background-size: 450px 275px;
    padding: 60px 20px;
    width: 100%;
    
    
    
}
/* Existing styles remain */

.greetings-div {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Add an extra delay per div */
.greetings-div.show:nth-child(1) {
    transition-delay: 0.3s;
}
.greetings-div.show:nth-child(2) {
    transition-delay: 0.6s;
}
.greetings-div.show:nth-child(3) {
    transition-delay: 0.9s;
}

.greetings-div.show {
    opacity: 1;
    transform: scale(1);
}
/* Existing styles remain */

/* Button image style */
.button-div img {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Show the button image with delay */
.button-div img.show {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.2s; /* Delay for button to appear after all divs */
}
img {
    height: 7vh;
}