/*
	CSS "Index.css"
	contact jez@jezlove.com
	copyright 2018
*/

@media all {

	body {
		font-family: "Arial", sans-serif;
	}

	code {
		font-family: "Consolas", "Courier New", monospace;
	}

	a:link,
	a:visited {
		font-weight: bold;
		text-decoration: none;
	}

	a:hover {
		text-decoration: underline;
	}

}

@media screen {

	body {
		margin: 0;
		padding: 0;
		background-color: #002255;
		background-image: linear-gradient(#002255, #BBBBBB);
		background-position: bottom;
		background-attachment: fixed;
		color: white;
	}

	.noscreen {
		display: none;
	}

	header {
		margin-top: 20%;
		text-align: center;
	}

	.logo img {
		width: 35%;
	}

	ul {
		list-style: none;
		text-align: center;
	}

	li {
		display: inline-block;
		padding: 20px;
	}

	a:link,
	a:visited {
		color: white;
	}

}

@media print {

	h1 {
		text-align: center;
	}

	a:link,
	a:visited {
		color: black;
		text-decoration: none;
	}

	a:after {
		content: " [" attr(href) "]";
	}

	.noprint {
		display: none;
	}

	.noprintlinkafter:after {
		content: "";
	}

}