/* NAV */

.navbar {
    background-color: #34C5A8;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid white;
}

.navbar-nav {
    margin: 0 auto;
    text-align: center;
}
.nav-link {
    color: #172E48 !important;
    margin: 0 6px;
}
.nav-link.active, .nav-link:hover {
    background-color: #172E48;
    color: #ffffff !important;
}

.dropdown-menu{
    text-align: center;
    margin: 0 auto;
}

.dropdown-item {
        color: #172E48 !important;
        margin: 0 auto;
    }

.dropdown-item.active, .dropdown-item:hover {
        background-color: #172E48;
        color: #34C5A8 !important;
    }

/*GENERAL*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato';
    overflow-x: hidden;
}

header {
    background-color: #172E48;
    color: #fff;
    padding: 10px;
    text-align: center;
}

h2{
    text-align: center;
}

.main-content{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
 
}

h2 a {
    color: #34C5A8; /* Couleur du lien */
    text-decoration: underline; /* Soulignement du lien */
    transition: color 0.3s ease; /* Transition de la couleur lors du survol */
}

/* Changement de couleur au survol */
h2 a:hover {
    color: #172E48; /* Nouvelle couleur au survol */
}


/* PRESENTATION */
.presentation-container {
    display: flex;
    align-items: center; /* Centrer verticalement */
    justify-content: center; /* Centrer horizontalement */
    margin-top: 40px;
}

.presentation-block {
    width: 95%;
    position: static;
    padding: 20px;
    background-color: #172E48;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.content-block {
    text-align: justify;
}

.presentation-block h3 {
    color: #34C5A8;
    margin: 15px 0px;
    text-align: center;
    font-size: 34px;
}
.presentation-block h4 {
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 24px;
    color: white
 }

.image-block{
    text-align: center;
}

.image-block img{
    width: 60%;
    height: auto;
    margin: auto;
}

/* FOOTER */

footer {
    background-color: #34C5A8;
    padding: 10px 0 20px;
}

footer span {
    color: #172E48;
    font-size: 25px;
    line-height: 35px;
}

footer span:hover {
    color: #172E48;
    font-size: 30px;
}

footer h5 {
    color: white;
    font-weight: normal;
}

#logo-container {
    margin-bottom: 20px;
}

#logo-container img{
    width: 6.25%;
    height: auto;
}