/* Reset default margin & padding to prevent inconsistencies */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Styling */
.navbar {
    background-color: black; /* Background color */
    padding: 10px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1000; /* Ensures it's above all content */
}

/* Navbar Links */
.navbar a {
    color: #00ff00;
    text-decoration: none;
    font-size: 1em;
    margin: 0 15px;
    padding: 8px 15px;
    display: inline-block;
    text-shadow: 0px 0px 5px #00ff00;
    transition: 0.3s;
}

/* Hover Effect */
.navbar a:hover {
    text-shadow: 0px 0px 10px #00ff00, 0px 0px 20px #00ff00;
}

/* Ensure Content Does Not Overlap Navbar */
.content {
    padding-top: 60px; /* Adjust based on navbar height */
    text-align: center;
}
        body {
            background-color: black;
            color: #00FF00;
            font-family: "Courier New", monospace;
            text-align: center;
            margin: 0;
            padding: 20px;
            padding-top: 70px;
        }
        a {
            color: #00FF00;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .container {
            width: 80%;
            margin: auto;
            padding: 20px;
            border: 2px solid #00FF00;
            background: rgba(0, 0, 0, 0.8);
            position: relative;
            z-index: 2;
        }
        .terminal-text {
            font-size: 18px;
            text-shadow: 0 0 5px #00FF00;
        }
        .divider {
            border-bottom: 2px solid #00FF00;
            margin: 20px auto;
            width: 50%;
        }
        .profile-pic {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 3px solid #00FF00;
            filter: contrast(200%) brightness(80%) grayscale(100%);
            image-rendering: pixelated;
        }
        .description {
            text-align: left;
            margin: auto;
            width: 60%;
        }
        .link-section {
            margin-top: 20px;
        }
        .link-section a {
            display: block;
            margin: 10px 0;
        }
        footer {
            margin-top: 40px;
            font-size: 14px;
            color: #00AA00;
        }