@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Orbitron:wght@400..900&family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Kufam:ital,wght@0,400..900;1,400..900&display=swap');
*{
    font-family: "lato", sans-serif;
}
 
.container {
    width: 90%; /* Définit la largeur du conteneur à 90% de son parent */
    height: 130%;
    margin: auto; /* Centre le conteneur horizontalement */
    padding-top: 5px;
}
 
header{
    background-color: #f55026; /* Définit la couleur de fond de l'en-tête */
    color: #fff; /* Définit la couleur du texte dans l'en-tête */
    width: 100%; /* Définit la largeur de l'en-tête à 100% de la fenêtre */
    top: 0; /* Positionne l'en-tête en haut de la fenêtre */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
 
header h1 {
    text-align: center; /* Centre le texte du titre */
    justify-content: center;
    font-size: 20px;
    margin-bottom: 0.5rem; /* Ajoute un espacement en bas du titre */
}
header p{
    color: black;
    font-size: 25px;
    text-align: center;
}
 
nav ul {
    display: flex; /* Utilise Flexbox pour la mise en page */
    justify-content: center; /* Centre les éléments de la liste horizontalement */
    list-style: none; /* Supprime les puces de la liste */
    justify-content: end;
 
}
 
nav ul li {
    margin: 0 1rem; /* Ajoute un espacement horizontal entre les éléments de la liste */
}
 
nav ul li a {
    color:black; /* Définit la couleur du texte des liens */
    text-decoration: none; /* Supprime le soulignement des liens */
    font-size: large; /* Définit la taille de la police des liens */
    font-family: "exo", sans-serif; 
 
}
 
.white{
    color: white;
}
 
hr{
    color: black;
    border:1px solid;
    inline-size: 30%;
}

.container p , footer h3{
    font-family: "exo", sans-serif; 
}

h2{
    font-family: "exo", sans-serif;
    text-decoration: underline;
    color: #262163;
}

.contenu{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
 
.col-s{
    width: 40%;
    background-color:#e6eff0;
    padding-left: 40px;
    padding-right: 28px;
    padding-top: 20px;
}
 
.col-s, img{
    width: 15%;  
}
 
.col-m{
    width: 81%;
    color: white;
    text-align: center;
    background: url(../img/geometric-1732847.jpg) no-repeat;
    border: 2px dotted #262163;
    padding-bottom: 40px;
}
 
.black{
    color: black;
    font-size: large;
}
 
.large{
    font-size: large;
    color: #e6eff0;
    background: #f55026;
    margin-left: -40px ;
    margin-right: -30px;
    padding: 20px;
}
 
.color{
  color:#e6eff0 ;  
}
 
span{
    font-weight: bold;
}
 
.margin{
    margin-top: 80px;
}
 
.between{
    margin-top: 35px;
}
 
.marg{
     margin-top: 40px;
}

.big{
    width: 105%;
    margin-top: 50px;
}
 
.bot{
    padding-bottom: 25px;
}
 
.bottom{
    background-color: #f55026;
    padding-top: 50px;
    height: 150px;
}
 
 
.bloc{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
 
.padding{
    color: white;
    padding-top: 22px;
    font-size: small;
}

@media screen and (max-width: 500px){

    nav ul li {
    margin: 0 2rem; /* Ajoute un espacement horizontal entre les éléments de la liste */
    margin-top: 20px;
    }

    .contenu{
        display: flex;
        flex-direction: row;
        text-wrap: wrap;
        justify-content: space-around;
    }

    .col-s{
    width: 100%;
    }

    .col-m{
    width: 100%;
    text-align: left;
    padding-left: 20px;
    }

    .col-m, p{
    font-size: small;
    }

    h2{
        color: #f55026;
    }

    .margin{
    margin-top: 40px;
}

     .bottom{
        padding-top:30px;
        height: 250px;
    }

    .bloc{
        display: flex;
        flex-direction: column;
        text-wrap: wrap;
        justify-content: space-around;
    }

    .bloc p{
        padding-left: 30px;  
    }

    h3{
        font-size: small;
        width: 50%;
        padding-left: 30px;
    }

    .padding{
        font-size: small;
        width: 50%;
        padding-left: 30px;
    }
 }