/* Set the background color to black */
body {
    background-color: #222020;
    color: #b67c2e; 
}

/* Override dark mode background to keep the black background */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #222020 !important;
        color: #b67c2e; /* Optional: Ensure text stays visible in dark mode */
    }
}

/* Banner Image */

.image-left {
	margin-right: 100px;
	
}

.image-right {
	margin-left: 100px;
	
}

/* Footer */
footer {
	background-color: #222020;	
	color: white;
}
