/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa; /* White background */
    color: #333; /* Dark text for readability */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Article Container */
.article-container {
    background-color: #ffffff; /* Light gray background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1, h2 {
    color: #2c3e50; /* Deep blue for headings */
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    border-bottom: 2px solid #3498db; /* Blue underline */
    padding-bottom: 10px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 30px;
}

/* Paragraphs */
p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Lists */
ul {
    list-style-type: square;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Code Block */
pre {
    background-color: #0f172a;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #ffffff;
}

code {
       
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.95rem;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Button Style */
button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

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

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 10px;
    }
}


