*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    margin-top: 200px;
    background-color: #dc8fd3;
    font-family: 'Poppins', sans-serif;
}

p{
    font-weight: 300;
    color: #111;
    font-family: 'poppins', sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 10px;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: 0.5s;
    background-color: black; /* Ajout de la couleur de fond */
}

.logo{
    color: #fff;
    font-weight: bold;
    font-size: 2em;
    text-decoration: none;
}
.logo span{
    color: #dc8fd3;
}

.navbar{
    display: flex;
    position: relative;
}
.navbar li{
    list-style: none;
}
.navbar a{
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
}




p {
    text-align: center;
}

.titre-texte {
    color: #000;
    font-size: 2em;
    font-weight: 300;
    text-transform: capitalize;
    text-align: center; /* Centrer le texte horizontalement */
    margin-bottom: 20px; /* Ajouter un espace en bas */
}

.titre-texte span {
    color: #0024d7;
    font-size: 1.5em;
    font-weight: 700;
}

.contenu p {
    font-weight: 300;
    color: #111;
    text-align: center; /* Centrer le texte horizontalement */
    margin-bottom: 20px; /* Ajouter un espace en bas */
}

.contenu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.contenu:hover {
    transform: scale(0.9);
}

main {
    width: 90%;
    margin: 15vh auto 50px;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #000000;
    font-weight: 300;
    background-color: #fff; /* Fond blanc pour le contenu principal */
}

main h1 {
    font-size: 1rem;
    justify-content: center;
    text-align: center;
}

main div {
    margin-bottom: 50px;
    justify-content: center;
    text-align: center;
}

main div h1 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sae h1 {
    text-align: center;
}

.hi h1 {
    text-align: center;
}

/* Liens dans les mentions légales */
.links ul li a {
    color: #fff;
    text-decoration: none;
}

.links ul li a:hover {
    text-decoration: underline; /* Ajoute le soulignement au survol */
    color: rgb(255, 255, 255); /* Optionnel : change la couleur du texte au survol */
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    main {
        width: 90%;
        padding: 30px;
    }

    main h1 {
        font-size: 1rem;
    }
}
