body {
	/* background-image: "../data/pictures/dark-website-background.jpg"; */
	background-image: linear-gradient(darkslategray, lightslategray);
	color: white ;
	max-width: 800px ;
	margin: auto ;
	padding: 0 16px ;
	margin-bottom: 500px ;
	font-family: sans-serif ;
}

a {
	color: lightblue ;
}

a:visited {
	color: lightgray ;
}

h1 {
	text-align: center ;
}

h2, h3, b {
	color: #E59C23 ;
}

footer {
	text-align: center ;
}

img {
	max-width: 600px ;
	width: 100% ;
	margin: auto ;
	display: block ;
}

code {
    word-wrap: normal;
    padding: 16px;
    overflow: auto;
    font-size: 85%;
    line-height: 1.45;
    background-color: #161b22;
    -webkit-border-radius: 3px;
    border-radius: 3px;
	margin-top: 0;
    margin-bottom: 16px;
	display: block;
	color: #c9d1d9;
    /* background: #f8f8f8; */
	font-family: monospace;
    white-space: pre;
    /* margin: 1em 0px; */
}


@media (prefers-color-scheme: light) {
	body {
		background: white ;
		color: black ;
	}
	a {
		color: blue ;
	}
	a:visited {
		color: purple ;
	}
	h2 {
		color: inherit ;
	}
	code {
		color: forestgreen ;
	}
}

@media print {
	a[href] {
		text-decoration: none ;
		color: black ;
	}
}

#menu-nav {
	text-align: center;
	padding: 15px 35px;
}
#menu-nav .button {
	background-color: #333333;
	border: 1px solid #333333;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
}
#menu-nav .button:hover {
	background-color: #475939;
}

#menu-nav label, #menu-burger { display: none; }

#menu-items { display: flex; }
#menu-items a {
	width: 20%; /* 100% / 5 tabs = 20% */
	padding: 10px;
	color: white;
	text-decoration: none;
	text-align: center;
}
#menu-items a:hover {
	background: #401408;
}

@media screen and (max-width: 600px){
	#menu-nav label { 
		display: inline-block; 
		color: white;
		background: #E59C23;
		font-style: normal;
		font-size: 1.2em;
		padding: 10px;
	}

	#menu-items a {
		box-sizing: border-box;
		display: block;
		width: 100%;
		border-top: 1px solid #333;
	}

	#menu-items { display: none; }
	#menu-nav input:checked ~ #menu-items { display: block; }
}
