
* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styles */
body {
    margin: 0;
    background-color: #070707;
    border: 0;
    padding: 0;
    background-image: 
      linear-gradient(to right, rgba(248, 246, 246, 0.2) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(242, 239, 239, 0.2) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.9;
}

/* Navigation Bar */
nav {
    background: #2c3e50;
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e74c3c;
}

/* Header Section */
.container h1 {
    text-align: center;
    margin-top: 20px;
    color: #2c3e50;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Author Info */
.container p strong {
    color: #e67e22;
}

/* List Styling */
.container ul {
    margin: 20px 0;
    padding-left: 40px;
}

.container ul li {
    margin: 10px 0;
    color: #34495e;
    font-size: 1rem;
}

/* Subheadings */
.container h2 {
    color: #2980b9;
    margin-top: 30px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    font-size: 1.5rem;
}

/* Paragraphs */
.container p {
    margin: 15px 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px;
    background: #2c3e50;
    color: white;
    font-size: 0.9rem;
}

/* Additional Styling */
.container {
    background: white;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Links inside the content */
.container a {
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.container a:hover {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .container {
        padding: 15px;
    }
}
        blockquote {
            font-style: italic;
            border-left: 4px solid #ccc;
            margin: 20px 0;
            padding-left: 15px;
            color: #555;
        }
        cite {
            display: block;
            margin-top: 10px;
            font-weight: bold;
            font-size: 0.9em;
        }
        a {
            color: #007acc;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        body {
            font-family: Arial, sans-serif;
        }

        .section {
            padding: 20px;
            border-bottom: 1px solid #ccc;
        }

        .section img {
            display: block;
            margin: 20px auto;
            max-width: 90%;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
