html {
  font-family: "Gothic STD";
  font-size: 30px;
}

.button {
  border: none;
  transition-duration: 0.4s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  padding: 0px;
     cursor: pointer;
}

.button:hover {
  background-color: #f44336;
  /* Green */
  color: white;
}

img {
  display: flex;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: white;
}

/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

/* Top right text */
.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

/* Bottom right text */
.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sticky-parent {}

.sticky-parent-2 {}

.sticky-child {
  -webkit-position: sticky;
  position: sticky;
  top: 0px;
  background-color: rgba(0, 255, 255, 1);
  /* border: 10px solid rgba(0, 0, 255, 1); */
  /**Martial 4em**/
  font-size: 8vw;
  padding: 1em;
}

.sticky-parent-2 .sticky-child {
  background-color: rgba(150, 0, 20, 1);
}



/* --------- */
body {
  background-color: rgb(255, 255, 255);
}

.menu {
  position: sticky;
  top: 0;
  height: 100vh;
}

.liste {
  display: flex;
  justify-content: space-between;
  height: 100vh;
}

@keyframes mycolor {
  from {
    background-color: white;
  }

  to {
    background-color: red;
  }
}

.titredrone {
  font-size: 8vw;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  background-color: red;
  animation: mycolor 0.5s infinite;
}

.liste li {
  padding: 1em;
  border: solid 10px black;
  background-image: url(../images/2.jpg);
  background-size: cover;
  background-position: center;
}

.liste li.li3 {
  background-image: url(../images/3.png);
}

.contenu {
  border: solid 10px red;
  width: 90%;
  margin: auto;
}

.titre {
  font-size: 3em;
  position: sticky;
  top: 1.2rem;
}

.titre-bleu {
  background-image: linear-gradient(100deg, black, rgba(255, 255, 200, 0.5));
}

.titre-rouge {
  background-image: linear-gradient(100deg, red, rgba(255, 255, 200, 0.5));
}

.titre-vert {
  background-image: linear-gradient(100deg, black, rgba(255, 255, 200, 0.5));
}

.flash div:hover img {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

li:hover {
  background-color: black;
  color: white;
}

article img {
  width: 100%;
}

.flash div:hover img {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;

  .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
  }

  .one {
    grid-column: 1 / 3;
    grid-row: 1;
  }


  .two {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
  }

  .three {
    grid-row: 2 / 5;
  }

  .four {
    grid-column: 3;
    grid-row: 3;
  }

  .five {
    grid-column: 2;
    grid-row: 4;
  }

  .six {
    grid-column: 3;
    grid-row: 4;
  }

  div {
    column-count: 3;
    column-gap: 40px;
  }

  .rond {
    width: 300px height: 300px background-color: red;
    border-radius: 50%;
    transition: background-color 3s ease-in-out;
    border-radius: 1s ease-in-out,
  }

  .rond:hover {
    background-color: black;
    border-radius: 0%;
    transform: rotateZ(720deg);
  }

  .carre {
    position: fixed;
    top: 0;
    left: 0;
    animation-name: mon-animation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    background-color: pink;
    border: solid red 1px;
    height: 300px;
    width: 300px;
    transform-origin: 50% 50%;
    transition: background-color 1s ease-in-out, border-radius 1s ease-in-out,
      transform 0.5s ease-in-out;
  }

  .carre h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) border: solid white 1px;
    text-align: center;
  }

  .carre:hover {
    background-color: blue;
    border-radius: 50%;
    transform: rotateZ(45deg) scale(2);
  }

  /*@keyframes mon-animation {
	0% {
		background-color: purple;
		border-radius: 0%;
	}

	25% {
		background-color: aqua;
		border-radius: 100%;
	}

	100% {
		background-color: purple;
		border-radius: 0%;
	}
}

@media screen and (max-width: 1000px) {
     body {
     	background-color: red;
     }
}

@media screen and (max-width: 600px) {
     body {
     	background-color: green;
     }

@media screen and (max-width: 600px) {
     body {
     	background-color: green;
     }
}

@media screen and (min-width: 600px) {
     body {
     	background-color: red;
     }
}

@media screen and (min-width: 800px) {
     body {
     	background-color: blue;
     }

@media screen and (min-width: 1000px) {
     body {
     	background-color: grey
     ;
     }
}

@media screen and (min-height: 400px) {
       html {
           font-size: 50px;
     }

}*/
  html {
    font-size: 30px;
  }

  body {
    background-color: rgb(255, 255, 255);
  }

  .menu {
    position: sticky;
    top: 0;
  }

  .liste {
    display: flex;
    justify-content: space-between;
  }

  .liste li {
    border: solid 10px black;
  }

  .contenu {
    border: solid 10px red;
    width: 90%;
    margin: auto;
  }

  .titre {
    font-size: 3em;
    position: sticky;
    top: 1.2rem;
  }

  .titre-bleu {
    background-image: linear-gradient(100deg, black, rgba(255, 255, 200, 0.5));
  }

  .titre-rouge {
    background-image: linear-gradient(100deg, red, rgba(255, 255, 200, 0.5));
  }

  .titre-vert {
    background-image: linear-gradient(100deg, black, rgba(255, 255, 200, 0.5));
  }

  .flash div:hover img {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
  }

  /*article img {width: 100%;}

.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}
.one {
  grid-column: 1 / 3;
  grid-row: 1;
}
.two {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}
.three {

  grid-row: 2 / 5;
}
.four {
  grid-column: 3;
  grid-row: 3;
}
.five {
  grid-column: 2;
  grid-row: 4;
}
.six {
  grid-column: 3;
  grid-row: 4;
}*/
  /*div {

	column-count: 3;
  column-gap: 40px;
}

.rond { width: 300px height: 300px background-color: red; border-radius: 50%; transition: background-color 3s ease-in-out; border-radius: 1s ease-in-out,}

.rond:hover {
	background-color: black;
	border-radius: 0%;
	transform: rotateZ(720deg);

}

.carre {
	position: fixed;
	top: 0;
	left:0;

	animation-name: mon-animation;
	animation-duration: 2s;
	animation-iteration-count: infinite;

	background-color: pink;
	border: solid red 1px;
	height: 300px;
	width: 300px;
	transform-origin: 50% 50%;
	transition: background-color 1s ease-in-out, border-radius 1s ease-in-out,
	 transform 0.5s ease-in-out;
}

.carre h1 {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%, -50%)
	border: solid white 1px;
	text-align: center;
}

.carre:hover {
	background-color: blue;
	border-radius: 50%;
	transform: rotateZ(45deg) scale(2);
}
html {
font-family: "Helvetica", Helvetica, sans-serif;
	font-size: 30px;}


body {
	background-color: rgb(255, 255, 255);}

.menu {position: sticky; top: 0;}

.liste {display: flex; justify-content: space-between;}

.liste li {border: solid 10px black;}

.contenu {border: solid 10px red; width: 90%; margin: auto;}

.titre {font-size: 3em; position: sticky; top: 1.2rem;}

.titre-bleu {background-image: linear-gradient(100deg, black, rgba(255, 255, 200, 0.5));}

.titre-rouge {background-image: linear-gradient(100deg, red, rgba(255, 255, 200, 0.5));}

.titre-vert {background-image: linear-gradient(100deg, black, rgba(255, 255, 200, 0.5));}

.flash div:hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}*/
  /*article img {width: 100%;}

.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}
.one {
  grid-column: 1 / 3;
  grid-row: 1;
}
.two {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}
.three {

  grid-row: 2 / 5;
}
.four {
  grid-column: 3;
  grid-row: 3;
}
.five {
  grid-column: 2;
  grid-row: 4;
}
.six {
  grid-column: 3;
  grid-row: 4;
}*/
  /*div {

	column-count: 3;
  column-gap: 40px;
}

.rond { width: 300px height: 300px background-color: red; border-radius: 50%; transition: background-color 3s ease-in-out; border-radius: 1s ease-in-out,}

.rond:hover {
	background-color: black;
	border-radius: 0%;
	transform: rotateZ(720deg);

}

.carre {
	position: fixed;
	top: 0;
	left:0;

	animation-name: mon-animation;
	animation-duration: 2s;
	animation-iteration-count: infinite;

	background-color: pink;
	border: solid red 1px;
	height: 300px;
	width: 300px;
	transform-origin: 50% 50%;
	transition: background-color 1s ease-in-out, border-radius 1s ease-in-out,
	 transform 0.5s ease-in-out;
}

.carre h1 {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%, -50%)
	border: solid white 1px;
	text-align: center;
}

.carre:hover {
	background-color: blue;
	border-radius: 50%;
	transform: rotateZ(45deg) scale(2);
}
*/