@charset "utf-8";
/* CSS Document */

body,html{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Arial';
	font-size: 16px;
	color: #ffffff;
	background-color: #1a1816;
}

h1{
	font-size: 2em;
	margin: 0;
	padding: 0;
	width: 100%;
	position: relative;
	float: left;
	text-align: center;
}
h2{
	font-size: 2em;
	color: #ff0000;
	text-align: center;
}
.bigTxt{
	font-size: 1.2em;
	font-weight: bold;
}

.infoP{
	width: 100%;
	float: left;
}
.logoP{
	width: 100%;
	max-width: 600px;
	position: relative;
	float: left;
	left: 50%;
	transform: translateX(-50%);
}
.logoP img{ max-width: 100%; height: auto; }
.titre{
	width: 100%;
	position: relative;
	float: left;
}

.bandPhoto{
	width: 100%;
	display: flex;
	position: relative;
	float: left;
	margin-top: 20px;
}
.casePhoto{
	width: 25%;
	aspect-ratio:4/3;
	background-color: #dcdcdc;
	border:1px solid #1a1816;
	box-sizing: border-box;
	position: relative;
	float: left;
	overflow: hidden;
}
.casePhoto img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.annonce{
	width: 100%;
	text-align: center;
	font-size: 1.2em;
	color: #ff0000;
	position: relative;
	float: left;
	margin-top: 5px;
}

.bas{
	width: 100%;
	display: flex;
	justify-content: center;
	border-top: 1px solid #ff0000;
	position: relative;
	float: left;
	margin: 20px 0 10px 0;
}
.coord{
	width: calc(100% - 20px);
	max-width: 580px;
	background-color: #ff0000;
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	color: #1a1816;
	text-align: center;
	position: relative;
	float: left;
	padding: 10px 15%;
}

.copyP{
	width: 100%;
	text-align: center;
	font-size: 0.8em;
	position: relative;
	float: left;
	margin-top: 5px;
}

.boutonP{
	border: 1px solid #ff0000;
	padding: 8px;
	color: #000000;
	text-decoration: none;
}

@media (max-height: 800px){
	
	h1{
	font-size: 1.6em;
	}
	
	.bandPhoto{
	flex-wrap: wrap;
	}
	.casePhoto{
		width: 50%;
		aspect-ratio:4/3;
		background-color: #dcdcdc;
		border:1px solid #1a1816;
		box-sizing: border-box;
		position: relative;
		float: left;
		overflow: hidden;
	}
	
}