body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #4334c7bb;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.quote-box {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgb(192, 24, 24);
    max-width: 500px;
    width: 100%;
}

#quote {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#author {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
