* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #72EDF2 10%, #5151E5 100%);
    color: #333;
}

.container {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1); /* Fondo translúcido */
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Sombra suave */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
    -webkit-backdrop-filter: blur(10px); /* Soporte para Safari */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Borde semitransparente */
    max-width: 420px;
    width: 100%;
}

h1 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #fff;
}

.quote-box {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15); /* Fondo translúcido */
    border-radius: 10px;
    backdrop-filter: blur(8px); /* Efecto de desenfoque */
    -webkit-backdrop-filter: blur(8px); /* Soporte para Safari */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde semitransparente */
    color: #1d1c1c;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .quote-box {
        font-size: 1.2rem;
    }

    .container {
        max-width: 400px;
    }
}
