*{
        
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-weight: 500; */

  }

  body{
    max-width: 1100px;
    padding: 0 30px;
    margin: 0 auto;
    --font-title: 'VG5000', sans-serif;
    --font-text: 'Montserrat', sans-serif;
    margin-bottom: 30vh;
  }


  .title-section{
    font-family: var(--font-title);
    font-size: 26px;
    text-align: center; 
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-top: 120px;
    margin-bottom: 100px;
  }

  .title-section span{
    border-bottom: 6px double black;
  }

  code{
    font-family: var(--font-title);
    background-color: #f3f3f3;
  }

  /* .title-section::before{
    content: "";
    display: block;
    max-width: 800px;
    border-top: 1px solid #cfcfcf;
    margin: 0 auto;
    padding-top: 60px;
  } */


  /* HEADER ------------------------------------------------------------------ */

  header h1{
    text-align: center;
    font-size: 36px;
    margin-top: 40px;

    font-family: var(--font-title);
    letter-spacing: 2px;
    text-transform: uppercase;


  }
  header h2{
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
  }
  header{
    margin-bottom: 80px;
    font-family: var(--font-title);
  }



  /* PRÉSENTATION ------------------------------------------------------------------ */ 
  
  #presentation{
    max-width: 800px;
    margin: 0 auto;

  }

  #presentation h2{
   font-family: var(--font-title); 
   font-size: 18px;
   text-transform: uppercase;
   font-weight: bold;
   letter-spacing: 2px;
   margin-top: 40px;
  }

  #presentation a{
      color: currentColor;
      text-decoration: none;
      border-bottom: 1px dotted #555;
  }

  #presentation a:hover{
    color: blue;
    border-bottom: 1px dotted blue;
  }


  #presentation ul a{
      font-weight: bold;
  }


  #presentation p, #presentation ul li{
    /* font-family: 'ABeeZee', sans-serif; */
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 18px;

  }

  #presentation ul {
    margin-top: 20px;
    margin-bottom: 50px;
  }

  #presentation ul strong{
    font-family: 'VG5000';
    font-weight: bold;
    font-size: 19px;
  }
  
  #presentation ul li{
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
  }



  /* PROGRAMME ------------------------------------------------------------------ */ 

  #programme{
    --gap: 40px;
    /* --max-grid: 360px; */
    width: auto;
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: var(--gap);
    grid-column-gap: var(--gap);
    font-family: 'VG5000';
   
  }

  #programme article figure, 
  #programme article img{
    width: 100%;
    height: 220px;
    /* object-fit: cover; */
    /* max-width: 350px;
    height: 200px; */
    /* margin: 0 auto; */
  }

  @media screen and (max-width: 970px){
    #programme{
      grid-template-columns: 1fr 1fr;
    }
    #programme article figure, 
    #programme article img{
      height: 260px;
    }
  }

  @media screen and (max-width: 600px){
    #programme{
      grid-template-columns: 1fr;
    }
  }

  /* @media screen and (max-width: 1040px){
    #programme{
      max-width: calc(var(--max-grid)*2 + var(--gap));
      margin: 0 auto;
      margin-top: 100px;
    }
  }

  @media screen and (max-width: 701px){
    #programme{
      grid-template-columns: 1fr;
    }
  } */

  #programme article{
    text-align: center;

  }


 

  #programme article figure{
    margin-top: 20px;
    overflow: hidden;
  }

  #programme article h2{
    font-weight: normal;
    font-size: 18px; 
  }

  #programme article h1{
    font-weight: bold;
    font-size: 24px;
  }






  /* Détail programme */

  #workshop-week img{
    object-fit: cover;
  }

  #animation figure{
    background-color: black;
  }

  #animation img{
    object-fit: contain;
    background-color: black;
  }

  #positionnement figure{
    border: 1px solid #888;
  }

  #css-print img{
    width: 130%!important;
    object-fit: cover;
    object-position: -53px center;
  }


  
  
 /* TRAVAUX ------------------------------------------------------------------ */

 #travaux{
   --gap: 40px;
   display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: calc(var(--gap)*2);
  grid-column-gap: var(--gap);
 }

 @media screen and (max-width: 970px){
  #travaux{
    display: block;
  }

  #travaux article{
    margin: 0 auto;
    margin-bottom: calc(var(--gap)*2);
    max-width: 600px;
  }
}

 #travaux article > h1{
  font-family: var(--font-title);
  font-size: 24px;
  text-align: center; 
 }

 #travaux article > h2{
  font-family: var(--font-title);
  font-weight: normal;
  font-size: 18px;
  text-align: center; 
  margin-bottom: 30px;
 }

 #travaux article > h2::before{
   content: "«";
   padding-right: 5px;
 }

 #travaux article > h2::after{
  content: "»";
  padding-left: 5px;
}

#travaux figure, #travaux img{
  width: 100%;
}

#travaux figure{
  border: 1px solid #cfcfcf;
}




#travaux article > ul{
  list-style-type: none;
  margin-top: 12px;
  /* display: flex;
  justify-content: space-between; */
}

#travaux article > ul li{
  font-family: var(--font-text);
  font-weight: 500;
  /* font-size: 18px;
  line-height: 28px;
  margin-bottom: 18px; */
  border: 1px solid black;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 10px;
  margin-right: 10px;
}

#travaux article > ul a{
  text-decoration: none;
  color: currentColor;
}

#travaux article > ul li:hover{
  border: 1px solid blue;
  color: blue;
  cursor: pointer!important;
}

#travaux article > ul li label{
  cursor: pointer;
}


/* ASIDE --------------------------------------------------------------------- */

#travaux aside{
  --padding: 40px;
  display: none;
  position: fixed;
  overflow: scroll;

  background-color: white;

  padding: var(--padding);

}




@media screen and (max-width: 800px){
  #travaux aside{
    top: 0px;
    left: 0px;
    height: 100vh;
  }
  #travaux aside label{
    position: fixed;
    font-size: 20px;
    top: var(--padding);
    right: var(--padding);
  }
  #travaux aside h1{
    margin-top: 80px;
  }
}

@media screen and (min-width: 800px){
  #travaux aside{
    top: 10vh; 
    left: 10vw;
    width: 80vw;
    height: 80vh; 
   
    border: 3px solid black;
  }

  #travaux aside label{
    font-size: 30px;
    position: absolute; 
    right: var(--padding);
  }
}




#travaux aside h1{
  font-family: var(--font-text);
  text-decoration: underline;
  font-size: 18px;
  text-align: center; 
  margin-bottom: 40px;

}

#travaux aside h2{
  font-family: var(--font-title);
  font-size: 24px;
  text-align: center; 
}

#travaux aside .name{
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 22px;
  /* font-weight: normal; */
}

#travaux aside .title{
  margin-top: 10px;
  margin-bottom: 60px;
 
}



#travaux aside ul{
  list-style-type: none;
  font-family: var(--font-title);
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 26px;
}

#travaux aside ul::before{
  content: "Notions web: "; 

  font-weight: bold;
}

#travaux aside ul li{
  display: inline;
}

#travaux aside ul li::after{
  content: ", "
}

#travaux aside ul li:last-child::after{
  content: none
}

#travaux aside p{
max-width: 800px;
margin: 0 auto;
margin-bottom: 18px;
font-family: var(--font-text);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

#travaux aside button{
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  background: none;
  border: 1px solid black;
  padding: 3px 12px;
  border-radius: 10px;
  margin-left: calc(50% - 94px/2);
  margin-top: 30px;
  margin-bottom: 20vh;
}

#travaux aside button:hover{
  color: blue;
  border: 1px solid blue;
  cursor: pointer;
}


#input_mathieu-champion:checked ~ #travaux #mathieu-champion aside { display: block; }
#input_celeste-vidal-ayrinhac:checked ~ #travaux #celeste-vidal-ayrinhac aside { display: block; }
#input_cyrielle-pauly:checked ~ #travaux #cyrielle-pauly aside { display: block; }
#input_lucie-lozano:checked ~ #travaux #lucie-lozano aside { display: block; }
#input_timothee-casilli:checked ~ #travaux #timothee-casilli aside { display: block; }
#input_charlotte-thouvenin:checked ~ #travaux #charlotte-thouvenin aside { display: block; }
#input_dain-kim:checked ~ #travaux #dain-kim aside { display: block; }
#input_alice-dezert:checked ~ #travaux #alice-dezert aside { display: block; }
#input_valentin-degnieau:checked ~ #travaux #valentin-degnieau aside { display: block; }
#input_hippolyte-thillard:checked ~ #travaux #hippolyte-thillard aside { display: block; }
#input_pauline-aubry:checked ~ #travaux #pauline-aubry aside { display: block; }
#input_thi-thanh-hang-nguyen:checked ~ #travaux #thi-thanh-hang-nguyen aside { display: block; }


#input_none:checked ~ #travaux aside{
  display: none;
}