body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

#quote-container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#quote-text {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#quote-author {
    font-size: 1.2em;
    font-style: italic;
}