@font-face {
    font-family: 'Aster';
    src: url(../fonts/Aster-Regular.woff2’) format(‘woff2’),
        url(../fonts/Aster-Regular.ttf’) format(‘truetype’)
}

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Aster', sans-serif;
}

body {
    font-family: 'Aster';
    background-size: 100% ;
    margin: 0;
    background-color: #151519;
}


div#slider {
    display: block;
    width: 20%;
    margin: auto;
    overflow: hidden;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
}

div#slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    padding: 0;
    font-size: 0;
    left: 0;
    text-align: left;
    animation: 30s slidy infinite;
    display: flex;
    flex-wrap: wrap;
}

div#slider figure img {
    width: 20%;
    float: left;
    align-self: center;
}


div.one{
    display: flex;
    justify-content: center;   /* Centre horizontalement */
    align-items: center;       /* Centre verticalement */
    height: 300px;
    background-color: rgb(58, 122, 124);
}

div.one section{
    width: 100%;
    max-width:1500px;           /* Limite la largeur du contenu du paragraphe */
    margin: 0 auto;             /* Centre le contenu de la section horizontalement */
    /* text-align: justify;        /* Justifie le texte pour une meilleure présentation */
}

div.one2{
    display: flex;
    justify-content: center;   /* Centre horizontalement */
    align-items: center;       /* Centre verticalement */
    height: auto;
    padding: 50px;
    background-color: rgb(58, 122, 124);
}

table#main {
    width: 100%;                /* Assure que le tableau principal prend toute la largeur de son conteneur */
}

table#ligne1 {
    width: 60%;                 /* Ajuste la largeur du tableau à 60% de la largeur du parent */
    margin: 0 auto;             /* Centre le tableau horizontalement dans son conteneur */
    margin-bottom: 20px;        /* Espacement entre les sections */
}

table#ligne1 section {
    max-width:1100px;           /* Limite la largeur du contenu du paragraphe */
    margin: 0 auto;             /* Centre le contenu de la section horizontalement */
}

table#ligne1 h1{
    width: 70%;
    margin: auto;
    /* text-align: justify;        /* Justifie le texte pour une meilleure présentation */
}

table#ligne1 p{
    width: 60%;
    margin: 0 auto;
    /* text-align: justify;        /* Justifie le texte pour une meilleure présentation */
}

table#ligne2 {
    width: 100%;                /* Assure que le tableau ligne2 prend toute la largeur de son conteneur */
}

table#ligne2 td {
    width: 50%;                 /* Chaque cellule dans la ligne 2 occupe 50% de la largeur */
    padding: 20px;              /* Ajoute un peu d'espace autour du contenu des cellules */
    box-sizing: border-box;     /* Prend en compte le padding dans le calcul de la largeur totale */
    text-align: left;           /* Alignement du texte à gauche dans les cellules */
    vertical-align: top;        /* Aligne le contenu des cellules en haut */
}

table#ligne2 h2{
    width: 80%;
    margin: auto;
    /* text-align: justify;        /* Justifie le texte pour une meilleure présentation */
}

table#ligne2 p{
    width: 80%;
    margin: auto;
    /* text-align: justify;        /* Justifie le texte pour une meilleure présentation */
}

div.two{
    width: 100vw; /* 100% de la largeur de la fenêtre */
    margin: 0; /* enlève les marges */
    padding: 0; /* enlève les paddings */
    overflow: hidden; /* évite les débordements */
}

div.two img {
    width: 100%;
    height: auto; /* garde les proportions */
    display: block; /* évite l'espace sous l'image */
}

h1{
    width: 50%;
    margin: auto;
    font-size: 31px;
}

h2{
    width: 50%;
    margin: auto;
}

p {
    width: 45%;
    margin: auto;
}

.blanc{
    color:  whitesmoke;
}

.backblanc{
    background-color: #121212;
}


