/* Random Quotes Generator CSS */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f8ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    transition: background-color 0.3s ease;
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

#quote {
    font-size: 1.5rem;
    color: #444;
    font-style: italic;
    margin: 20px 30px;
    max-width: 600px;
}

#author {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 30px;
}

button {
    padding: 12px 24px;
    font-size: 1rem;
    background-color: #0077cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005fa3;
}
