/* image placement */
#overlay{
	background-image: url('IMG_1106.gif');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transition: opacity 0.3s;
}

/* "interactions" */
main{
	background-color: white;
	padding: 20px;
	font-size: 0.98em; /* 5px according to pdf!!! */
	font-family: Gill Sans, sans-serif;
}

body:not(.mobile):not(.forceShowImage):hover #overlay,
body.forceShowContacts #overlay{
	opacity: 0;
	pointer-events: none;
}

/* link / info styling */
a{
	text-decoration: none;
	color: inherit;
}

p{
	text-decoration: none;
	color: black;  
}


body:not(.mobile) .onlyMobileLink{pointer-events: none;}

/* various & utils */
main p:first-child{
	margin-top: 0;
}
h1{
	margin-top: 0;
	font-size: 1.1em;
}
.fillParent{
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;left: 0;
	box-sizing: border-box;
}