body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fefefe;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
    background: linear-gradient(135deg, #f6f1f1, #e3f0ff);
}

.container {
    text-align: center;
    background: #ffffffbb;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #444;
}

.quote-box {
    font-size: 1.2rem;
    font-style: italic;
    padding: 1.5rem;
    background: #f1f9ff;
    border-left: 4px solid #85bfff;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    min-height: 100px;
    transition: all 0.3s ease-in-out;
}

button {
    background: #85bfff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #69aaff;
}
