
body {
    font-family: 'Arial', sans-serif;
    background-color: #edede9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}


.container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}


h1 {
    color: #4caf50;
    font-size: 32px;
    margin-bottom: 20px;
}

#quote-box {
    margin-bottom: 20px;
}

#quote-text {
    font-size: 24px;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

#quote-author {
    font-size: 20px;
    font-weight: bold;
    color: #888;
}

button {
    background-color: #e3d5ca;
    color: white;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #d5bdaf;
    font-size: 28px;
}
