body {
	overflow-y: hidden;
	font: 2.0vmax/1.4 Candara;
	font-weight: 100;
}

#fr-FR, #en-UK {
	position: fixed;
	left: 3vw;
	top: 3vh;
	width: 6vw;
	cursor: pointer;
	z-index: 1;
}
#home {
	position: fixed;
	left: 0;
	top: 10vh;
	width: 12vw;
	z-index: 1;
}
#LinkedIn {
	position: fixed;
	left: 3vw;
	top: 30vh;
	width: 6vw;
	z-index: 1;
}
#Facebook {
	position: fixed;
	left: 3vw;
	top: 45vh;
	width: 6vw;
	z-index: 1;
}

#menu {
	position: absolute;
	left: 0;
	bottom: 10vh;
	width: 100vw;
	height: 10vh;
	margin: 0;
	padding: 0;
	background-color: rgba(136, 138, 89, 0.5);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: #FFF;
}
	#menu li {
		margin: 2vw;
		padding: 2vw;
		list-style: none;
		transition: all 0.5s;
	}
	#menu li:hover {
		background: #888A59;
		opacity: 1.0;
	}
	#menu a {
		color: #FFF;
		text-decoration: none;
		cursor: pointer;
	}
	#menu .showForm {
		font-weight: bold;
		cursor: pointer;
	}

#contactForm {
	position: absolute;
	width: 1000px;
	height: 700px;
	left: calc(50vw - 500px);
	top: calc(50vh - 350px);
	background: url("/Contact/OpenedBooks.jpg") center center no-repeat;
	box-shadow: 0 0 50px #555;
	display: none;
	z-index: 5;
}
@media screen and (max-width: 1024px) {
	#contactForm {
		font-size: 0.8em;
	}
}
@media screen and (min-width: 1025px) {
	#contactForm {
		font-size: 0.6em;
	}
}
	#contactForm h2 {
		text-align: center;
		margin: 40px auto 20px;
	}
	#contactForm form {
		text-align: center;
		margin: auto;
	}
	#contactForm label, #contactForm textarea {
		display: inline-block;
		margin: 10px;
	}
	#contactForm label:first-of-type {
		margin-right: 0;
	}
	#contactForm button {
		margin: 10px 50px 0 50px;
	}

.crossfade > figure {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	background-position: center center;
	background-size: cover;
	animation: imageFading 30s linear infinite;
	opacity: 0;
}

.crossfade > figure:nth-child(1) {
	background-image: url("/Assets/CSS/Backgrounds/Welcome_1.jpg");
}
.crossfade > figure:nth-child(2) {
	animation-delay: 5s;
	background-image: url("/Assets/CSS/Backgrounds/Welcome_2.jpg");
}
.crossfade > figure:nth-child(3) {
	animation-delay: 10s;
	background-image: url("/Assets/CSS/Backgrounds/Welcome_3.jpg");
}
.crossfade > figure:nth-child(4) {
	animation-delay: 15s;
	background-image: url("/Assets/CSS/Backgrounds/Welcome_4.jpg");
}
.crossfade > figure:nth-child(5) {
	animation-delay: 20s;
	background-image: url("/Assets/CSS/Backgrounds/Welcome_5.jpg");
}
.crossfade > figure:nth-child(6) {
	animation-delay: 25s;
	background-image: url("/Assets/CSS/Backgrounds/Welcome_6.jpg");
}

@keyframes imageFading {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
	}
	10% {
		animation-timing-function: ease-out;
		opacity: 1;
	}
	20% {
		opacity: 1
	}
	30% {
		opacity: 0
	}
	100% {
		opacity: 0
	}
}

#copyright {
	position: fixed;
	left: 0;
	bottom: 0.5vh;
	width: 100vw;
	font-size: 0.6em;
}