/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Layout */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #a8c0ff, #e2e2e2);
    padding: 20px;
}

.quote-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.25);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 90%;
    width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

h1 {
    font-size: 24px;
    color: #222;
    font-weight: 700;
}

blockquote {
    font-size: 20px;
    font-style: italic;
    color: #333;
}

span {
    font-size: 16px;
    font-weight: bold;
    color: #444;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    background: linear-gradient(135deg, #6F42C1, #4523A1);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

button:hover {
    background: linear-gradient(135deg, #5a34a1, #351885);
    transform: translateY(-2px);
}

button i {
    margin-right: 5px;
    font-size: 16px;
}

@media (max-width: 500px) {
    .quote-container {
        padding: 20px;
    }
    h1 {
        font-size: 20px;
    }
    blockquote {
        font-size: 18px;
    }
    span {
        font-size: 14px;
    }
    button {
        font-size: 12px;
        padding: 10px 15px;
    }
}