body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    background-color: #7eebf9;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.supportMageImg{
    width: 100%;
    height: 300px;
    object-fit: contain;
    pointer-events: none;
}
.flower {
    position: absolute;
    bottom: -100px;
    width: 50px;
    height: 50px;
    background-image: url('assets/sunflower.png');
    background-size: cover;
    animation: flowerfloat 10s infinite ease-in-out;
}
@keyframes flowerfloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.flower:nth-child(1) { left: 10%; animation-duration: 8s; }
.flower:nth-child(2) { left: 30%; animation-duration: 12s; }
.flower:nth-child(3) { left: 50%; animation-duration: 10s; }
.flower:nth-child(4) { left: 70%; animation-duration: 14s; }
.flower:nth-child(5) { left: 90%; animation-duration: 9s; }
