/*Css contenue de la page*/

.contenu {
  text-align: center;
  flex-grow: 1;

  text-shadow: #444;
  font-size: 3.5rem;

  padding-bottom: 10rem;
}

.grostexte {
  padding-top: 4rem;
  padding-bottom: 5rem;
  text-shadow: 5px 5px red, 9px 10px blue;
}

.contenu p {
  font-size: 15px;
  justify-content: right;
}

.contenu .partie2 {
  justify-content: space-evenly;

  margin-bottom: 100px;

  align-items: center;

  margin-top: 100px;
}

.contenu .partie2 .divimage .image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.discoverText {
  font-size: 0.8em;
}

.contenu .partie2 .débutliste {
  margin-top: 10px;
  margin-bottom: -50px;
}

.contenu .partie3 {
  justify-content: center;

  align-items: center;
}

.contenu .partie3 .divimage {
  width: 800px;
  height: 417px;
}


.contenu .partie3 .divimage .image {
  width: 626px;
  height: 417px;

  border-radius: 20px;
}


/* Responsive Text */
@media screen and (max-width: 40.5rem) {
  * {
    font-size: 0.8em;
  }

  footer, header {
    font-size: 2.5rem;
  }

  .grostexte {
    text-shadow: 2px 2px red, 4px 5px blue;
  }

  .contenu .partie3 .divimage .image{
    width: 20%;
    height: 20%;
  
    border-radius: 20px;
  }

  .contenu .partie2 .divimage .image {
    width: 65%;
    height: 65%;

    border-radius: 20px;
  }
  
}

/* Responsive Images */
@media screen and (min-width: 40.5rem) {
  .contenu .partie3 {
    display: flex;
  }

  .contenu .partie2 {
    display: flex;
  }
}

@media screen and (max-width: 40.5rem) {
  .contenu .partie3 .divimage {
    display: none;
  }
}