body {
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Background image */
    background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") no-repeat center center/cover;
}

/* Dark overlay to make text readable */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.container {
    background: rgba(255,255,255,0.9);
    width: 400px;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

#quote {
    font-size: 20px;
    margin: 20px 0;
    color: #333;
}

#author {
    color: #555;
}

button {
    padding: 12px 25px;
    border: none;
    background: #667eea;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #5a67d8;
}