#documents .container{
  padding-top: 2%;
}
#documents ul {
  list-style-type:none;

}
#documents h1{
  text-align: center;
}
#documents p{
    color: white;
    font-size: 1.5vw;
}
#documents p.titre{
    margin-top: 7%;
}
#documents .col{
   padding: 0px;
}

.arrow-container {
    position: relative;
    display: inline-block;
  }
  
  /* Flèche arrière (plus sombre) */
  .arrow-back {
    width: 200px;
    height: 50px;
    background-color: #1a1a1a;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    position: absolute;
    left: 5px;
    top: 5px;
  }
  
  /* Flèche avant */
  .arrow-front {
    width: 200px;
    height: 50px;
    background-color: #333;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 20px;
  }
  a.aPdf {
    font-size: 1rem;
  }
  /* unvisited link */
a.aPdf:link {
    color: white;
  }
  
  /* visited link */
  a.aPdf:visited {
    color: white;
  }
  
  /* mouse over link */
  a.aPdf:hover {
    color: var(--colorPink);
  }
  
  /* selected link */
  a.aPdf:active {
    color: red;
  }

  @media only screen and (max-width: 425px) {
      #documents p {
        font-size: 3vw;
    }
  }