        /* Pixel Art & Terminal Feel */
        body {
			   background-color: #000;
            background-image: url("images/backg130.jpg"); /* Dark background */
            color: #FFFFFF; /* Light text */
            font-family: 'Verdana', monospace;
            margin: 0;
            padding: 0;
        }
		a:link {
            color: #FFFFFF;
            background-color: transparent;
            text-decoration: underline;
        }

		a:visited {
            color: #FFFFFF;
            background-color: transparent;
            text-decoration: none;
		}

		a:hover {
            color: #FFFFFF;
            background-color: #2C1E2E;
            text-decoration: none;
		}

		a:active {
            color: #FFFFFF;
            background-color: transparent;
            text-decoration: none;
		}
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            border: 4px solid #c3f1fe; /* Example border color */
            background-color: #222222;
        }
        header {
            background: #011da9;
            padding: 20px;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            border-bottom: 4px solid yellow;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: center;
            background: #555555;
            padding: 10px 0;
            border-bottom: 4px solid yellow;
        }
        nav a {
            color: #FFFFFF;
            text-decoration: none;
            padding: 10px 15px;
            font-size: 18px;
            font-weight: bold;
            border: 2px solid transparent;
        }
		nav a:link {
            text-decoration: none;
        }
        nav a:hover {
            background: #60b62b;
            border: 2px solid #FFFFFF;
        }
		nav a:active {
            text-decoration: none;
        }
		nav a:visited {
            text-decoration: none;
        }
        h1, h2, h3 {
            font-size: 22px;
            text-transform: uppercase;
            background: #60b62b;
            color: #FFFFFF;
            padding: 10px;
            border: 4px solid #000000;
            text-align: center;
		}


ul {
    list-style: none; /* Remove default bullets */
    padding-left: 20px;
}

li {
    position: relative;
    padding-left: 16px; /* Adjust for the bullet size */
    font-family: 'Verdana', monospace;
    font-size: 14px;
}

li::before {
    content: ""; /* Required for pseudo-elements */
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;  /* Set to image size */
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
	transform: translateY(-50%);
}

/* Different bullet images for each status */
.need::before {
    background-image: url('road-need.png');
}

.part::before {
    background-image: url('road-part.png');
}

.done::before {
    background-image: url('road-done.png');
}

note {
	width: 100%;
	color: black;
	background:  orange;
	padding: 4px;
	text-align: center;
}




		
        footer {
            text-align: center;
            background: #011da9;
            padding: 10px;
            border-top: 4px solid yellow;
            color: #FFFFFF;
        }