body {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    height: 100vh;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

h1 {
    color: #002D57;
    font-weight: bold;
}

.dropdown-menu {
    padding: 8px;
}

.btn-menu {
    background-color: #002D57;
    color: white;
}
.btn-menu:hover {
    background-color: #009E5E;
    color: white;
}

.img-logo {
    display: block;
    margin: 0 auto; /* Centre l'image horizontalement */
    max-width: 100%; /* L'image ne dépassera pas la largeur de son conteneur */
    height: auto; /* Maintient les proportions de l'image */
}

.img-big-screen {
    display: block; /* Affiche l'image sur les grands écrans */
    margin: 0 auto; /* Centre l'image horizontalement */
    max-width: 100%; /* L'image ne dépassera pas la largeur de son conteneur */
    height: auto; /* Maintient les proportions de l'image */
    width: 80%;
}

.img-small-screen {
    display: none; /* Cache l'image sur les grands écrans */
}

.green-card {
    background-color: #009E5E;
    color: white;
    width: 100%;
    margin-bottom: 24px;
}

.blue-card {
    background-color: #002D57;
    color: white;
    width: 100%;
    margin-bottom: 24px;
}

.custom-links {
    color: white;
    text-decoration: none;
}

.custom-input {
    width: 64px;
}

.text-left {
    text-align: start;
}

.footer {
    background-color: #009E5E;
    color: white;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Styles pour les écrans de smartphones (largeur maximale de 768px) */
@media (max-width: 768px) {
    .img-logo {
        width: 90%;
    }

    h1 {
        font-size : 1.75em;
    }

    .img-big-screen {
        display: none; /* Cache l'image sur les grands écrans */
    }
    
    .img-small-screen {
        display: block; /* Affiche l'image sur les grands écrans */
        margin: 0 auto; /* Centre l'image horizontalement */
        max-width: 100%; /* L'image ne dépassera pas la largeur de son conteneur */
        height: auto; /* Maintient les proportions de l'image */
        width: 90%;    
    }
    
}

/* Styles pour les écrans de PC (largeur minimale de 769px) */
@media (min-width: 769px) {
    .img-logo {
        width: 60%; /* L'image prend 60% de la largeur de l'écran */
    }
    h1 {
        font-size : 2.75em;
    }    
}