body{
	font-family: 'Oswald', sans-serif;
	font-size: 20px;	
	margin: 25px 25px;
}
body:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ff8f00;
	position: absolute;
	top: 0;
	left: 0;
	transform: skewY(-20deg);
	transform-origin: top left;	
	z-index: -10;
}
a{
	text-decoration: none;
	color: black;
}
.bloc ul{
	list-style: none;
	padding: 10px 10px;
}
.title{
	font-size: 25px;
	margin-bottom: 20px;
	margin-top: 20px;
}
.title--header{
	font-family: 'Staatliches', cursive;
	font-size: 90px;
	color: white;
	text-shadow: 3px 3px 5px #A55;	
}
.title--border{
	display: inline-block;
	border-bottom: 3px solid #ff8f00;
}
.bloc{
	padding: 10px;
	width: 90%;
	margin: auto auto;
	margin-bottom: 10px;
	border-radius: 10px;
	box-shadow: 0px 10px 20px 0px rgba(0,0,0,.30);
	list-style: none;
	background-color: #ff8f00;
}
.liste{
	list-style: none;
	padding: 15px;
}
img{
	display: block;
	width: 100%;
	height: 100%;
	margin: auto auto;
}
.positif:before{
	content:url(images/positif.png);
	display: inline-block;	
}
.negatif:before{
	content:url(images/negatif.png);
	display: inline-block;
}
.anim{
	display: flex;
	justify-content: space-around;
	margin-bottom: 30px;
	margin-top: 30px;
}
.align--right{
	display: inline-block;
	transform: translateX(0);
    transition: .3s ease-in-out;
}
.align--right:hover{
	transform: translateX(30px);
}
.btn{
	padding: 30px;
	height: 40px; 
	width: 40px;
	background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    border: none;
    background-color: transparent;
    display: inline-block;
}
.zoom{
	background-image: url(images/zoom.png);
    transform: scale(1);
    transition: .3s ease-in-out;
 }
 .zoom:hover{
 	transform: scale(1.3);
 }
 .rotate{
	background-image: url(images/rotate.png);
    background-color: transparent;
    transition: all 0.5s ease;
 }
 .rotate:hover{
 	transform: rotate(+190deg);
 }
 .opacite{
    opacity: 1;
    background-color: black;
    transition: .4s ease-in-out;
 }
  .opacite:hover{
 	opacity: 0.5;
 }
 .change{
	background-image: url(images/change1.jpg);	
    background-color: transparent;
    transition: .5s ease-in-out;
 }
 .change:hover{
 	background-image: url(images/change2.jpg);
 }
 .desktop{
 	width: 40%;
 	height: 40%;
 	padding-bottom: 20px;
 }
 

@media (min-width: 700px){
	body{
		font-size: 23px;
	}
	img{
		width: 70%;
		height: 70%;
	}
	.bloc{
		width: 75%;
	}
	.btn{
		padding: 40px;
		height: 60px; 
		width: 60px;
	}
	.title{
		font-size: 30px;
	}
	.title--header{
		font-size: 150px;
	}
	.desktop{
 	width: 40%;
 	height: 40%;
 	padding-bottom: 50px;
 }
	
}
@media (min-width: 1400px){
	body{
		font-size: 25px;
	}
	section{
		margin: 5% 5%;
	}
	img{
		width: 60%;
		height: 60%;
	}
	.bloc{
		width: 85%;
	}
	.btn{
		padding: 40px;
		height: 80px; 
		width: 80px;
	}

	.personna{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.title{
		font-size: 35px;
	}
	.bloc .title{
		margin-left: 30px;
	}
	.title--header{
		font-size: 200px;
	}
	.liste{
		margin-top: 0;
		width: 50%;
	}
	.logo--persona{
		margin: auto auto;
		width: 30%;	
	}
	.logo--persona img{
		margin: 0 0;
		height: 100%;
		width: 100%;
	}
	.colonne{
		display: flex;
		justify-content: space-around;
	}
	.bloc li h2{
		text-align: center;
	}
	.positif{
		margin: 20px;
		width: 50%;
		border-right: 2px solid black;
	}
	.negatif{
		margin: 20px;
		width: 50%;
	}
	.positif:before{
		content:url(images/positif-grand.png);
	}
	.negatif:before{
		content:url(images/negatif-grand.png);
	}
	.desktop{
		display: block;
		width: 300px;
		padding-bottom: 20px;
	}
	.gestalt{
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
	.gestalt li{
		list-style: none;
	}
	.gestalt--box{
		width: 30%;
		height: 30%;
	}
	.gestalt--fond{
		padding: 25px;	
		margin-bottom: 10px;
	}
	.gestalt--fond__border{
		border-bottom: 2px solid black;
	}
}