* {
	margin: 0;
	padding: 0;
	}
	
html {
	margin: 0;
	padding: 0;
	height: 100%;
	max-width: 100%;
	scroll-behavior: smooth;
	}

body {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	min-height: 100%;
	
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
	flex-flow: column;
	flex-direction: column;
	background-color: #fafafa;
	font-family: "Le Havre";
	font-size: 22px;
	color: #313130;
	}
	
.wrapper {
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	flex: 1 0 auto;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
	flex-flow: column;
	flex-direction: column;
	z-index: 1;
	}




/*  H E A D E R  */

header {
	position: relative;
	margin: 0;
	padding: 0;
	padding-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	background: #313130;
	z-index: 3;
	}
	
header .v {
	position: relative;
	margin: 0 auto;
	padding: 0;
	max-width: 100%;
	width: 360px;
	height: 240px;
	box-sizing: border-box;
	background-color: #f0ece2;
	background-image:
		url('../img/v.png'),
		url('../img/bg-papier.jpg');
	background-repeat: 
		no-repeat,
		repeat;
	background-position: top 20% left 43%;
	background-size: 
		130px,
		auto auto;
	clip-path: polygon(
		0% 0%,
		50% 100%,
		100% 0%);
	
	-webkit-clip-path: polygon(
		0% 0%,
		50% 100%,
		100% 0%);
	}

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

	header .v {
		height: 66.66vw;
		}
}


/*  F O O T E R  */

footer {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	height: calc(120px + 15vw);
	box-sizing: border-box;
	flex-shrink: 0;
	z-index: 3;
	background-color: #f0ece2;
	background-image:
		url('../img/footer-line-wide.png'),
		url('../img/bg-papier.jpg');
	background-repeat: 
		no-repeat,
		repeat;
	background-position: center bottom 20px;
	background-size: 
		750px,
		auto auto;
	z-index: 2;
	clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 50% calc(12vw + 50px));
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 50% calc(12vw + 50px));
	}
	
@media screen and (max-width: 800px){

	footer {
		height: 320px;
		background-image:
		url('../img/footer-line-narrow.png'),
		url('../img/bg-papier.jpg');
		background-position: center bottom 15%;
		background-size: 
		200px,
		auto auto;
		clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 50% calc(10vw + 50px));
		-webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 50% calc(10vw + 50px));
		}
}