
.buttons-container {
    text-align: center;
    margin-top: 50px;
  
}
.btn {
    margin: 10px;
    padding: 10px 20px;
    background-color: #0089fa;
    color: #e7e7e7;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: block;

}
.btn:hover {
    background-color: #0056b3;
}
body {
    /* Dégradé de couleurs pour le fond */
    background: linear-gradient(to bottom right, #8e9eab, #eef2f3);
    /* Pour une couleur unie, utilisez ceci à la place :
    background-color: #f5f5f5;
    */
    /* Assurez-vous que le contenu est centré verticalement et horizontalement */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Hauteur minimale pour occuper tout l'écran */
    min-height: 100vh;
    /* Polices et couleurs de texte */
    font-family: Arial, sans-serif;
    color: #333;
}
@media screen and (min-width: 800px) {

    .buttons-container {
        display: block;
        flex-wrap: wrap;
        justify-content: space-between;
     
    }
    .buttons-container  {
        width: 48%;
      
     
        
    }

}
@media screen and (min-width: 1200px) {
    .buttons-container{
        width: 24%;
       
        
    }

}