* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#quoteDisplay {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    min-height: 150px;
    margin: 20px 0;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #34495e;
    text-align: center;
    position: relative;
}

#quoteDisplay:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: #3498db;
    opacity: 0.2;
}

#quoteDisplay:after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    bottom: -50px;
    right: 10px;
    color: #3498db;
    opacity: 0.2;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(52, 152, 219, 0.4);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    #quoteDisplay {
        font-size: 1.1rem;
        padding: 20px;
        min-height: 120px;
    }

    button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    #quoteDisplay {
        font-size: 1rem;
        padding: 15px;
    }
}
