/* Copyright 2020, all rights reserved by Rail Club Neuchatel */

body {
	display : flex;
	flex-direction : column;
	flex-wrap : wrap;
	justify-content : flex-end;
	margin : auto;
	height : 100%;
	width : 100%;
	background-color : rgba(0,0,0,1);
	transition-property: background-color;
	transition-duration: 10s;
	transition-delay: 2s;
}

body:hover {
	background-color : rgba(0,0,0,1);	
}





/* Textual elements */

h1 {
	font-family : 'Raleway', sans-serif;
	color : rgba(255,255,255,1);
	font-size : 150%;
	text-align : center;
	position: fixed;
	top: 2%;
	left: 10%;
	background-color: rgba(50,50,50,0.75);
}


img {
	width: 90%;
	height: 90%;
	margin: auto;
	border: 2px solid rgba(50,50,50,1);
}


/* Footer */

footer {
	background-color : rgba(0,0,0, 1);
	border-top : 2px solid rgba(50,50,50,1);
	height : auto;
	width : 100%;
	margin : auto;
	text-align : center;
	font-size : 90%;
	font-style : italic;
	color : rgba(50, 50, 50, 1);
	position : fixed;
	bottom : 0;
	left : 0;
}

footer img {
	height : 10px;
	width : auto;
	border: none;
}

footer a, footer a:hover footer a:visited {
	color : rgba(50,50,50,1);
	text-decoration: none;
}

