<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

@font-face {
font-family: 'avant-garde';
src: url(fonts/avant-garde-regular.otf);
}

@font-face {
font-family: 'avant-garde-bold';
src: url(fonts/avant-garde-bold.otf);
}

/*//////////GENERAL//////////*/
header{
	background-color: white;
}

section{
	background-image: url(img/background.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}

img{
	max-width: 100%;
}


/*//////////INTRO//////////*/

.intro{
	background-color: rgba(255,255,255,0.80);
	border: solid 2px white;
	margin-top:20px;
	margin-bottom:20px;
	padding:10px 5%;
}

.intro p{
	font-size:18px;
	margin-top:10px;
}

/*//////////ALBUMS//////////*/

#perse{
	-webkit-perspective: 400px; /* Safari 4-8  */
    perspective: 400px;
}

.col{ 
	display: inline-block;
	position: relative;
    width: 19%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
	-ms-flex-preferred-size: 0;
	flex-basis: 20% !important;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.album, .footer{
	text-align: center;
}

.album img{
	transition: all 600ms ease 0s;
}

.album img:hover{
	-webkit-transform-style: preserve-3d;
	-webkit-transform: rotateX(20deg);
	transform-style: preserve-3d;
	transform: rotateY(20deg);
	transition: all 600ms ease 0s;
	cursor: pointer;
}

.new{
	color: #fff;
	border: solid 1px white;
	background: #f36d00;
	position: absolute;
	top: 0px;
	left: 30%;
	width: 116px;
	height: 30px;
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 2em;
	text-align: center;
	text-transform: uppercase;
	z-index: 1;
}

.new img{
	width: 50px;
	position: absolute;
	left: -38px;
	top: -15px;
	transform:none !important;
}

.claim{
	background-color: rgba(255,255,255,0.80);
	margin: 50px auto;
	padding:10px 0px 15px 0px;
	transition: all 300ms ease 0s;
}

.claim:hover{
	background-color: white;
}

.vert_clair{
	color:#5aa575;
}

.vert_plus_clair{
	color:#85c98b;
}

.footer{
	margin:20px auto;
}

/*//////////TEXTE//////////*/
h1, p, h2{
	font-family: 'avant-garde';
	text-align: center;
}

h1{
	color: #2f5240;
	font-size: 46px;
}


h2{
	color: #2f5240;
	font-size: 26px;
}

.album a{
	text-decoration: none !important;
	color: inherit;
}

.album p{
	background-color: rgba(255,255,255,0.80);
	border-radius: 0px;
	text-transform: uppercase;
	margin: 15px auto 0px auto;
	padding:10px 0px 8px 0px;
	font-family: 'avant-garde-bold';
	font-size: 16px;
	color: #2f5240;
	width:100%;
	transition: all 300ms ease 0s;
}

.album p:hover{
	background-color: rgba(255,255,255,1);
	border-radius: 20px;
	width:80%;
}

.claim{
	border: solid 2px white;
}

.claim p{
	font-family: 'avant-garde-bold';
	text-transform: uppercase;
	margin:5px 0px 0px 0px;
	font-size: 32px;
	color: #2f5240;
}

@media screen and (max-width: 768px){
	
	.col{
		width: 32%;
	}
	
	h1{
		font-size: 32px;
	}
	
	.album{
		margin-top: 40px;
	}
	
	.album p{
		font-size: 12px;
	}
	
	.intro p {
    	font-size: 14px;
	}
	
	.claim p{
		font-size: 26px;
	}
}

@media screen and (max-width: 640px){
	
	.album p{
		font-size: 10px;
	}
	
	.album p:hover{
		width:100%;
	}
}


@media screen and (max-width: 400px){
	
	.col{
		width: 49%;
	}
	
	h1{
		font-size: 20px;
	}
	
	h2{
		font-size: 20px;
	}
	
	.col-xs-3{
		-webkit-width:100% !important;
		width:100% !important;
	}
	
	.claim p{
		font-size: 24px;
	}
	
	.footer img{
		max-width:40%;
	}
}

@media screen and (max-width: 320px){
	
	.claim p{
		font-size: 20px;
	}
}
</pre></body></html>