html, body {
overflow-x: hidden;
margin: 0 auto;
padding: 10px;
font-family: Roboto;
font-size: 30px;
color: white;
background-image: url('images/fond2.jpg');
box-sizing: border-box;
}
h1, h2 {
margin-top: 150px;
}
p {
margin-top: 70px;
margin-bottom: 80px;
text-align: justify;
}
span {
background-color: black;
}
.carte {
max-width: 50%;
}
.rond {
border: 1px solid rgb(252,240,198);
border-radius: 50%;
}
.milieu {
margin-top: 60px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
}
@keyframes display {
0% {transform: translateX(254px);
	opacity: 0; }
10% {transform: translateX(0);
	opacity: 1; }
20% {transform: translateX(0);
	opacity: 1; }
30% {transform: translateX(-254px);
	opacity: 0; }
100% { transform: translateX(-254px);
	opacity: 0; }
}
.pic-ctn {
position: relative;
width: 100vw;
height: 127px;
margin-top: 5vh;
}
.pic-ctn > img {
position: absolute;
top: 0;
left: calc(50% - 127px);
opacity: 0;
animation: display 40s infinite;
}
img:nth-child(2) {
animation-delay: 8s;
}
img:nth-child(3) {
animation-delay: 16s;
}
img:nth-child(4) {
animation-delay: 24s;
}
img:nth-child(5) {
animation-delay: 32s;
}
header {
margin-top: 100px;
}
.elle {
display: none;	
}
.elle2 {
display: block;
}
table {
margin-left: 10%;
border: 1px solid rgb(252,240,198);
border-radius: 8px;
}
button {
height: 63px;
border-color: rgb(252,240,198);
background-image: url('images/clic.png');
color: white;
font-size: 20px;
border-radius: 8px;
}
.contour {
border: 1px solid rgb(252,240,198);
border-radius: 8px;
}
.centre {
margin-left: 25%;
margin-right: 25%;
}
.bord {
color: black;
background-color: rgb(252,240,198);
border: 1px solid rgb(252,240,198) ;
border-radius: 8px;
}
.beau {
margin: 0 auto;
padding: 30px 0;
}
.dessous {
width: 300px;
display: flex;
flex-direction: column;
}
.cache {
margin-top: -510px;
z-index: 2;
}
.visible {
z-index: 1;
}
#tirage {
margin: 30px;
padding: 20px;
font-size: 23px;
border: 1px solid gold;
background-color: black;
border-radius: 8px;
}
.centr {
text-align: center;
}
.tour {
border-radius: 50%;
animation-name: tourne;
animation-duration: 12s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes tourne {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

@media screen and (min-width: 1100px) {
.carte {
max-width: 100%;
}
@keyframes display {
0% {transform: translateX(800px);
	opacity: 0; }
10% {transform: translateX(0);
	opacity: 1; }
20% {transform: translateX(0);
	opacity: 1; }
30% {transform: translateX(-800px);
	opacity: 0; }
100% { transform: translateX(-800px);
	opacity: 0; }
}
.pic-ctn {
position: relative;
width: 100vw;
height: 400px;
margin-top: 15vh;
}
.pic-ctn > img {
position: absolute;
top: 0;
left: calc(50% - 400px);
opacity: 0;
animation: display 40s infinite;
}
img:nth-child(2) {
animation-delay: 8s;
}
img:nth-child(3) {
animation-delay: 16s;
}
img:nth-child(4) {
animation-delay: 24s;
}
img:nth-child(5) {
animation-delay: 32s;
}
}

@media screen and (min-width: 1800px) {
.elle {
display: block;	
}
.elle2 {
display: none;
}
}