html {
	background-color: #fbeee6;
}

body {
	margin: 0 auto;
	color: #222;
	font-family: Lora;
	font-size: 16px;
}

header {
	position: fixed;
	width: 100%;
	height: 100px;
	margin: 0 auto;
	box-shadow: 0 0 5px #444;
	background-color: #f1e4dc;
	color: #222;
	z-index: 2;
}

header > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1200px;
	margin: 0 auto;
}

header > div > div:nth-child(2) {
	text-align: center;
}

header > div > div:nth-child(2) > span:first-child {
	font-size: 2em;
	font-weight: bold;
}

header > div > div > img {
	display: block;
	width: 175px;
	height: 100px;
}

div#poster > img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

div#scroller {
	display: none;
	position: absolute;
	bottom: 30px;
	width: 100%;
	color: #fff;
	font-size: 60px;
	text-align: center;
	z-index: 1;
}

div#scroller > span {
	cursor: pointer;
}

div#language {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 0.8em;
	text-align: center;
	cursor: pointer;
	z-index: 1;
}

div#language > img {
	width: 60px;
	height: 34px;
	border: 1px solid #ccc;
}

main {
	width: 1040px;
	margin: 0 auto;
	padding: 40px 80px 80px 80px;
}

h1 {
	margin-top: 2em;
}

h1:first-of-type {
	margin-top: 0.5em;
}

h2 {
	margin-top: 1.5em;
}

p, ul {
	line-height: 1.5em;
}

b {
	font-weight: bold;
}

a {
	color: #07f;
	text-decoration: underline;
}

div#language a {
	color: #000;
	text-decoration: none;
}

img.person {
	float: right;
	width: 160px;
	height: 200px;
	margin: 0 0 20px 20px;
}

.nospam {
	display: none;
	visibility: hidden;
}

@media only screen and (max-width: 1280px) {

	header {
		height: 80px;
	}

	header > div {
		width: 980px;
	}
	
	header > div > div > img {
		width: 140px;
		height: 80px;
	}
	
	main {
		width: 940px;
		padding: 20px 20px 80px 20px;
	}

}

@media only screen and (max-width: 1024px) {

	body {
		font-size: 15px;
	}
	
	header > div {
		width: 100%;
	}
	
	header > div > div > img {
		display: none;
	}
	
	div#poster {
		display: none;
	}
	
	main {
		width: calc(100% - 40px);
		padding: 80px 20px;
	}

	div#scroller {
		visibility: hidden;
	}
	
	div#language {
		background-color: #fbeee6;
	}
	
	div#language > img {
		width: 40px;
		height: 23px;
	}

	img.person {
		margin: 0 0 10px 10px;
	}

}
