/* General body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1e3c72, #2a5298); /* Shades of blue */
    color: #333; /* Dark text for visibility */
    overflow-x: hidden;
    position: relative;
}

/* Background techy symbols */
body::before {
    content: "< > <div> <h1> <body> </body>";
    position: absolute;
    top: 10%;
    left: -20%;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    transform: rotate(-30deg);
    white-space: nowrap;
}

body::after {
    content: "</html> </h1> </div> <footer>";
    position: absolute;
    bottom: -10%;
    right: -30%;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    transform: rotate(20deg);
    white-space: nowrap;
}

/* Container styling */
.container {
    max-width: 900px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    color: #000; /* Ensures text inside container is black */
}

/* Headings */
h1, h2, h3 {
    color: #0056b3;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h2 {
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

h3 {
    margin-top: 15px;
    color: #0056b3; /* Ensures all h3 tags are visible */
}

/* Paragraph and links */
p {
    color: #333; /* Dark text for body content */
}

a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Unordered list */
ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #333;
}

/* Footer techy styling */
.container::after {
    content: "© 2024 Nafisat Ibrahim";
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.3);
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    body::before,
    body::after {
        font-size: 3rem;
    }

    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    ul {
        margin-left: 15px;
    }
}
