body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #6a82fb, #fc5c7d);
    font-family: 'Arial', sans-serif;
    color: #fff;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.5s;
}

.quote {
    font-size: 2em;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
}

.author {
    font-size: 1.2em;
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
    animation-delay: 0.5s; /* Aparecer después de la frase */
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    padding: 10px 20px;
    font-size: 1.2em;
    color: #fff;
    background: #fc5c7d;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

button:hover {
    background: #6a82fb;
    transform: scale(1.05);
}
