main {
  padding: 120px 40px 40px;
}

.container {
  display: flex;
  gap: 30px;
  font-family: 'Arial Rounded Bold';
}

.col {
  font-family: 'Arial Rounded Bold';
  flex: 1; /* chaque colonne prend de la place */
   line-height: 1.4;
   margin-left: 50px;
}

.image img {
  width: 65%;   /* desktop */
  max-width: 100%; /* jamais dépasser la largeur du conteneur */
  height: auto;
}

/*.image img {
  width: 65%;
  height: auto;
}*/

.contact-box {
  display: inline-block;      /* rectangle s'adapte au contenu */
  width: fit-content;         /* largeur = texte */
  background-color: #71BDFA;  /* couleur */
  color: #fff;                /* texte blanc */
  border-radius: 2px;        /* bords arrondis */
  padding: 5px 20px;         /* espace autour du texte */
  margin-top: 100px;           /* un peu d'espace après les textes */
  margin-left: 30px;
  text-align: right;
  font-size: 20px;
  line-height: 1.8;
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .contact-box {
    margin-top: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .image img {
    width: 100%; /* prend toute la largeur du conteneur */
  }
}
