p{
 margin-block-start: 0;
 margin-block-end: 0;
}

body{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	font-family: sans-serif;
	background-color: white;
	color: black;
	font-size: 16px;
	margin: 15px;
}

#gauche {
	position: fixed;
    top: 0;
    padding: 10px 0;
}

#droite {
    grid-column: 3/span 4;
}


a{
	color: black;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	cursor: pointer;
}

.fixe{
	position: fixed;
}


.text{
display: flex;
position: relative;
padding-top: 90px;
margin-bottom: 0.25rem;
}

#droite > .text:first-child{
padding-top: 0;
}


p.droite{
	flex: 1 1 auto;
	text-align: right;
}

p.milieu{
	flex: 1 1 auto;
	text-align: center;
}

p.gauche{
	flex: 1 1 auto;
}



.fixe2{
	position: absolute;
	left: 1rem;
}

.descri {
	text-align: justify;
}

.mySlides {
  display: none;
}

.container{
	position: relative;
}

div.left, .right {
	width: 25%;
	height: 100%;
	color:  #e3e3e3;
	font-size: 2rem;
	position: absolute;
	transform: translateY(-100%);
	cursor: pointer;
	padding: 0 1rem;
	display: table;

}

.right{
	right: 0;
	text-align: right;
}

.fa-solid,
.fa-angle-left{
	display: table-cell;
	vertical-align: middle;
}



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

	body{
	font-size: 13px;

	}

	.fixe{
	position: absolute;
}

#gauche{
	background-color: white;
    z-index: 99;
    width: 100%;
    height: 30px;
}

#droite {
    grid-column: 1/span 6;
    margin-top: 40px;
}


}