/* styles.css */

/* Reset CSS pour normaliser le rendu sur tous les navigateurs */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    margin-top: 20px;
}

.div_titres {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.div_titres a {
    width: 20%;
}

.div_titres h1 {
    width: 50%;
    color: #00DBFF;
}

.div_titres a img {
    margin-left: 40px;
}

h1 {
    display: flex;
    justify-content: center;
    color: #00DBFF;
}

.list-group-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}