/*Images d'illustration*/
.illustration {
  box-shadow: 0 0 10px #000;
  float: right;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 15px;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.illustration:hover {
  box-shadow: 1px 1px 20px orange;
  transition: all 0.5s ease;
  cursor: pointer;
}

/*Supprime l'animation de soulignement pour les images*/
a[target="_blank"]:hover::after {
  transform: scaleX(0);
}

@media screen and (max-width: 1000px) {
  /*mettre le texte au dessus de l'image*/
  .illustration {
    float: none;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    position: relative;
  }
  p {
    float: none;
    position: relative;
    display: block;
    margin-bottom: 100px;
  }
  .grid {
    display: grid;
  }
}

/*Arangement de l'image d'illustration et du paragraphe contenus dans la div 'grid'*/
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}