

.container {
    margin-top: 150px;
    display: flex;
    flex-wrap: wrap; /* Permet de passer en colonne sur petits écrans */

}

/*  flex: ;  box-sizing: border-box; Les deux div prennent une part égale de l'espace */

.div1 {
  width:100%;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 20px;
  background-color: skyblue;
  display: flex;
  border: 1px solid green;
   
}

.titre {
  margin-top: 20px;
  width:100%;
  height: 65px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 10px;
  background-color: darkviolet;
  display: block;
}
.titre-formation {
  margin-top: 20px;
  width:100%;
  height: 65px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 10px;
  background-color: darkviolet;
  display: block;
}
.titre-formation h1 {
 font-size: 30px;
 text-align: center;
 margin-top: 15px;
 color: white;
}

.image-div1 {
    width: 250px;
    height: auto;
    margin-top: 10px;
    margin-left: 15px;
}
.post-info {
    margin-right: 20px;
    margin-left: 30px;  
}
.post-titre {
   padding-top: 10px;
    font-size: 34px;
    color: red;
}

.post-text p{
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.titre-long {
    font-size: 25px;
    color: red;
}
.abone{
   margin-top: -10px;
    float: right;
   height: 60px;
   width: 230px;

}

/* Comportement responsive */

@media (max-width: 500px) {
   
 .div1 {
  width:100%;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 20px;
  background-color: lightyellow;
  flex-direction: column; 
}
.titre {
    margin-top: 20px;
  width:100%;
  height: auto;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 10px;
  background-color: darkviolet;
  display: block;
}
.titre h1 {
    font-size: 22px;
    text-align: center;
    margin-top: 10px;
}
.titre-formation {
  width:100%;
  height: auto;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 10px;
  background-color: darkviolet;
  display: block;
}
.titre-formation h1 {
 font-size: 22px;
 text-align: center;
 margin-top: 10px;
}

.post-titre {
   padding-top: 10px;
    font-size: 34px;
    color: red;
}
.image-div1 {
    width: 100%;
    height: auto;
    margin-left: 5px;
}
.post-info {
    margin-right: 10px;
    margin-left: 10px;  
}
.post-text p{
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.abone{
   margin-top: -10px;
    float: left;
   margin-left: 40px;
   height: 60px;
   width: 230px;

}

}
