* {
    box-sizing: border-box;
}

/*Global*/

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    
}

a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: black;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
}

img {
    width: 100%;
}

/*Header*/

.containerheader {
    position: fixed;
    z-index: 1000;
    background-color: blanchedalmond;
    width: 100%;
    max-width: 1340px;
    top: 0px;
    padding: 20px;
}

.headercontend {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    width: 150px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

header nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
}

header nav ul {
    display: flex;
}

header nav ul li {
    padding: 10px;  
}

header nav ul li a {
      color: rgb(65, 5, 121);
    font-size: 18px;
    font-weight: bold;
}

header nav ul li a:hover {
    text-shadow: rgb(199, 48, 151) 2px 2px 3px ;
    cursor: pointer;
    zoom: 103%;
}

/*Main*/

.maincontend {
    padding-top: 100px;
}



.titlepres {
    font-size: 30px;
    text-align: center;
} 

.pres {
    margin-top: 25px;
    font-size: 16px;
}

.maincontend-pres {
 
  /*à remplir*/
    font-size: 10px;
}

.prestitle {
    border-bottom: purple solid;
}

.prestitle h2 {
    margin-bottom: 0;
}



.activite {
    display: flex;
    align-items: center;
}

.activite img {
     width: 40%;
    height: 250px;
    margin: 20px;
}

.headactivite2 {
    text-align: end;
    border-bottom: solid  rgb(90,253,143);
}

.headactivite1 {
    border-bottom: solid  rgb(249, 249, 246);
}

.cardactivite2 {
    background-color: rgb(239,239,221);
    padding: 20px;
    margin: 20px;
}

.cardactivite1 {
    background-color: rgb(211, 250, 168);
    padding: 20px;
    margin: 20px;
}

.arrow {
    display: flex;
    justify-content: end;
}


/*Footer*/

.footercontend {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: blanchedalmond;
   text-align: center;
   padding-top: 25px;
   padding-bottom: 25px;
   font-weight: bolder;
   justify-content: space-around;
   margin-top: 60px;
}

#icons {
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 1335px) {
    header nav ul li a {
        font-size: 14px;
    }

    .logo {
        width: 75px;
        height: 25px;
    }
    
}

@media screen and (max-width:1008px) {

    #icons {
        display: block;
      
    }

    #icons:before {
        content: "\2630";
        font-size: 25px;
    }

    .logo {
        width: 150px;
    height: 50px;
    }

    nav ul {
        position: fixed;
        right: -100%;
        top:10%;
        flex-direction: column;
        background-color: rgba(255, 235, 205, 0.622);
        width: 50%;
        text-align: center;
        transition: 0.25s;
    }

    nav li {
        padding: 3px 0;
    }

    nav.active ul {
        left:50%;

    }
}

@media screen and (max-width:768px) {
      .footercontend {
    font-size: 10px;
 }

  .img {
    display: none;
 }

  .arrow {
    font-size: 10px;
 }
}


   