* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f1ea;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.quote-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

#quote-text {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #4a4a4a;
}

#quote-author {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #777;
}

#new-quote-btn {
    font-family: 'Poppins', sans-serif;
    background-color: #7a9c7a;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#new-quote-btn:hover {
    background-color: #5c795c;
}