body {
    font-family: Times, serif;
    text-align: center;
    background-color: #ffffff;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2px;
    background-color: white;
}

#quote {
    font-size: 1em;
    font-style: italic;
    text-align: left; 
    color: #3ec7e1;
}

#source {
    font-size: 1em;
    text-align: right; 
    color: #BF565A
}

button {
    font-size: 1em;
    padding: 0px 0px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}