.contacts-container{
  display: flex;
  min-height: 50vh;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.contacts{
  color: var(--main-dark-color);
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex; 
  flex-direction:column;
}
.contacts li{
  padding: 10px;
}
.contacts a{
color: var(--main-dark-color);
text-decoration: none;
font-size: 1.6em;
}
.contacts a:hover {
  color: var(--secondary-blue-color);
  text-decoration-line: underline;
}
.portrait-contact{
  width:max-content;
  border-radius: 30px;
  overflow: hidden;
}
/*Image*/
.plage {

  max-width: 85%;      /* limite dure */
  height: auto;
  margin: 1.5rem auto 0 auto;
  display: block;
}