.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main .title{
    display: inline-block;
    font-size: xx-large;
    font-weight: 700;
    color: #2F88FB;
    margin: 2%;
    width: 80%;
}

.main .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centre les lignes */
    gap: 60px;
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }
  

  
.container .news-box{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 7px;
    width: 220px;
    max-height: 270px;
    border: 1px solid #2F88FB;
    border-top: 0px;
    background: linear-gradient(to left,#03A14D, #5FD068);
}

.container .description{
    color: white;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
   
    width: 90%;
}

.container img{
    width: 100%;
    border-radius: 7px;
    border: 1px solid #2F88FB;
}

.container .link-box {
    padding: 4px 10px 4px 10px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    margin: 10px;

}

.container a {
    text-decoration: none;
    font-weight: 300;
    font-size: small;
    color: #2F89FC;
    border-bottom: 1px solid #2F89FC;
}

