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

.quote-generator {
    text-align: center;
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: .5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    max-width: 20rem;
    width: 90%;
}

h1 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.quote-box {
    padding: 1rem;
    margin: 1rem;
    background-color: #e0f7fa;
    border-radius: .5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

#quote {
    font-size: 0.9rem;
    color: #00796b;
    margin-bottom: 0.5rem;
    font-style: italic;
}

#author {
    font-size: 0.7rem;
    color: #004d40;
    font-style: italic;
}


button {
    background-color: #00796b;
    color: white;
    padding: 0.5rem 0.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color .3s ease;
}


button:hover {
    background-color: #004d40;
}


