body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #fff9c4, #ffe082);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Pantallas */
.screen {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    animation: fadeIn 0.6s ease;
}

.hidden {
    display: none;
}

h1 {
    color: #fbc02d;
}

p {
    color: #555;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: #fbc02d;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #f9a825;
}

/* Flores */
.bouquet {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.flower {
    font-size: 60px;
    animation: float 3s ease-in-out infinite;
}

.flower:nth-child(2) {
    animation-delay: 0.5s;
}

.flower:nth-child(3) {
    animation-delay: 1s;
}

.flower:nth-child(4) {
    animation-delay: 1.5s;
}

.final {
    font-size: 18px;
    color: #888;
}

/* Animaciones */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}