@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
}

.header h1 {
    margin: 0;
    font-size: 3em;
    font-weight: 700;
    animation: slideInDown 1s ease-in-out;
}

.content {
    padding: 30px;
}

.content h2 {
    font-size: 1.8em;
    color: #764ba2;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content a:hover {
    color: #764ba2;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5em;
    }
    .content h2 {
        font-size: 1.5em;
    }
    .content p {
        font-size: 1em;
    }
}
