/* Reset some default styles */
body, button {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    margin: 100px auto;
    max-width: 600px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#quotes {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

#author {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

button {
    font-size: 16px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    outline: none;
}

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

/* Style the Twitter icon using Font Awesome */
button i.fa-brands.fa-twitter {
    font-size: 20px;
    margin-right: 5px;
}
