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

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

.container {
    text-align: center;
    padding: 20px;
}

#quote-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin-bottom: 25px;
}

#quote {
    font-size: 26px;
    color: #2d2d2d;
    line-height: 1.4;
    transition: opacity 0.4s ease;
}

#author {
    font-size: 18px;
    color: #888;
    margin-top: 15px;
    transition: opacity 0.4s ease;
}

#generate-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    background-color: #00c4cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#generate-btn:hover {
    background-color: #009fa6;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    #quote-box {
        padding: 20px;
    }
    #quote {
        font-size: 20px;
    }
    #author {
        font-size: 16px;
    }
}
