body{
	background-image: url('img/fond.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	margin: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	color: #B58648;
    box-sizing: border-box;
    padding: 15px;
}
body main{
	font-family: 'Open sans',sans-serif;
	font-weight: 400;
	flex-direction: column;
}
body > *{
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
header img{
	max-width: 100%;
	height: auto;
}
main h1{
	font-family: 'Open sans',sans-serif;
	font-weight: 800;
	font-size: 48px;
    line-height: 1.1;
}
main span, main p{
	display: block;
	font-size: 20px;
	font-weight: 400;
}
footer{
    align-items: flex-end;
    padding-bottom: 15px;
}
footer a{
	display: inline-block;
}
footer > a:nth-last-child(1n+2) {
    margin-right: 15px;
}
@media screen and (max-width:600px){
	main h1{
		font-size: 34px;
	}
}