	a {
    		text-decoration: none;
    		color: #00ff00; /* Retro green */
    		border-bottom: 1px dotted #00ff00; /* Dotted underline for old-school feel */
    		transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    		font-family: "Courier New", Courier, monospace; /* Consistent retro font */
	}

	a:hover {
    		color: #33ff33; /* Slightly brighter green on hover */
    		border-color: #33ff33; /* Matches the hover color */
	}

	a:active {
    		color: #009900; /* Dark green for active state */
    		border-color: #009900;
	}	
	
	canvas {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    z-index: 1; /* Ensure it's below other elements */
	    pointer-events: none; /* Allow clicks through the canvas */
	}
	.container {
	    position: relative;
	    z-index: 2; /* Content stays above the canvas */
	    color: white; /* Text color for visibility */
	}

        html, body {
            font-family: "Courier New", Courier, monospace;
            background-color: black;
            color: green;
	    width: 100%;
	    height: 100%;
            margin: 0;
            padding: 0;
            overflow: auto;
        }

        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 10px;
            border: 2px solid green;
            background-color: black;
        }

        .header {
            text-align: center;
            border-bottom: 2px solid green;
            padding-bottom: 10px;
        }

        .header h1 {
            margin: 0;
            animation: flicker 2s infinite;
        }

        @keyframes flicker {
            0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
                opacity: 1;
            }
            20%, 24%, 55% {
                opacity: 0.4;
            }
        }

        .nav {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            position: relative;
	    align-items: center;
        }
	.nav a {
	    text-decoration: none;
	    color: #00ff00; /* Bright green for that retro feel */
	    margin: 0 10px;
	    border: 2px solid #00ff00;
	    padding: 5px 15px;
	    font-size: 16px;
	    font-family: "Courier New", Courier, monospace;
	    text-align: center;
	    text-transform: uppercase; /* Gives it that vintage terminal feel */
	    letter-spacing: 1px; /* Adds some spacing for readability */
	    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* Glowing effect */
	    transition: all 0.3s ease-in-out;
	    display: inline-block; /* So they act like buttons */
	}

	.nav a:hover {
	    background-color: #00ff00;
	    color: black;
	    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8); /* Stronger glowing on hover */
	    transform: scale(1.05); /* Slight scale effect for interaction */
	}

	.nav a:active {
 	   background-color: #005700; /* Darker green when active */
	    transform: scale(0.95); /* Slight shrink on click */
	}


       .nav .dropdown {
            position: relative;
            display: inline-block;
        }

	.nav .dropdown-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background-color: white;
		border: 1px solid green;
		padding: 5px 0;
		z-index: 1000;
		min-width: 150px;
		text-align: left;
	}

	.nav .dropdown-menu a {
    		display: block; /* Make the dropdown items stack vertically */
    		margin: 0; /* Remove margin between dropdown items */
    		padding: 5px 10px; /* Add consistent padding */
    		border: none; /* Remove border for dropdown items */
	}

	.nav .dropdown-menu a:hover {
		background-color: green;
		color: black;
	}

        .nav .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: black;
            border: 1px solid green;
            z-index: 1;
        }

        .dropdown-menu a {
            display: block;
            padding: 5px;
            color: green;
            text-decoration: none;
        }

        .dropdown-menu a:hover {
            background-color: green;
            color: black;
        }

        .content {
            padding: 10px;
            text-align: justify;
        }

        .footer {
            margin-top: 20px;
            border-top: 2px solid green;
            text-align: center;
            padding-top: 10px;
        }

        .snow-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
        }

        .snow {
            position: fixed;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="black"/><circle cx="10" cy="10" r="2" fill="green"/></svg>');
            background-size: 10px 10px;
            opacity: 0.05;
            animation: staticEffect 0.1s steps(5, end) infinite;
        }
	button {
            position: relative;
            z-index: 10;
            padding: 10px 20px;
            font-size: 14px;
            color: white;
            background-color: #333;
            border: none;
            cursor: pointer;
            margin-top: 20px;
        }
        button:hover {
            background-color: #555;
        }

        @keyframes staticEffect {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(10px);
            }
        }

        .image-container {
            float: left; /* Allows text to wrap around the image */
            margin: 10px; /* Adds space around the image */
            text-align: center; /* Centers the description text */
            width: 200px; /* Adjust width as needed */
        }
        .image-container img {
            max-width: 100%; /* Makes the image responsive */
            height: auto;
            cursor: pointer; /* Indicates the image is clickable */
	    border: 0px;
	    border-radius: 5px;
        }
        .image-description {
            font-size: 0.9em;
            color: #555; /* Adjust text color if needed */
        }

	.overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .overlay img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }
        .close-button {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 24px;
            color: white;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            padding: 10px;
        }
