@media screen, print, all{
	header {
		font-size: larger;
		border: 8px solid;
		padding: 10px;
	}

	nav {
		font-size: larger;
		border: 4px solid;
	}
	nav ol {
		display: inline;
	}
	nav ol li {
		display: inline;
	}
	nav img {
		display: inline;
		vertical-align: middle;
		height: auto; 
		width: auto; 
		max-width: 100%;
		max-height: 5em;
		border: 1px solid black;
	}

	table {
		text-align: left; 
	}
	th, td {
		padding: 0 0.5em;
	}

	/*img {
		height: auto; 
		width: auto; 
		max-width: 95vw; 
		max-height: 100%;
	}*/
}

@media screen {
	body {
		background: #d8d8e9;
		color: #000000;
		max-width: 65em;
	}

	header, nav {
		border-color: #dd0000;
	}

	table {
		background: #e0e0ee;
	}
	tr:nth-child(2n) {
		background: #d0d0dd;
	}
}

@media print {
	* {
		background: white;
		color: black;
		border-color: black;
	}

	strong {
		text-decoration: underline;
	}

	td {
		border-bottom: 2px solid;
	}
}
