* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ecd19e;
}

/* Centrovaní a velikost kontejneru animací */
.animation {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
}

/* Boxy pro obrázky */
.picture {
    margin: 5px;
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(#f0efed,#ef9e07);
    box-shadow: 0 4px 10px #0000004D;
}

.picture img {
    width: 25vh;
    height: auto;
}

/* Animace */
.leaf {
    animation: levitating 4s alternate ease infinite;
}

.vortex {
    animation: rotating 15s linear infinite;
}

.heart {
    animation: pulsing 2s ease-in-out infinite;
}

/* Definice animací */
@keyframes levitating {
    0% {
        transform: rotate(-20deg) translateY(35px);
    }

    100% {
        transform: rotate(-20deg) translateY(-35px);
    }
}

@keyframes rotating {
    0% {
        transform: rotate(360deg);
    }
    
    100% {
        transform: rotate(0deg);
    }
}

@keyframes pulsing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}