body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
}
.container {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.logo {
    max-width: 100px;
    margin-bottom: 1rem;
}
#quote-box {
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}
button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}
