/* Concepteur : Josselin Fatah-Roux */

/* Gestion du body */
body {
  color: #ffffff;
  background-color: #000000;
}

/* Gestion du titre */
h1 {
  text-align: center;
  margin: 20px 0;
}

/* Gestion des liens */
a:link{
	color: #CCCCCC;
	text-decoration: none; 
}

a:visited, a:hover, a:active{
	color: gray;
	text-decoration: none; 
}

nav a:link, nav a:visited, nav a:hover, nav a:active{
	color: #ffffff;
	text-decoration: none;
}

/* Gestion des puces */
ul li {
  text-align: justify;
}

/* Gestion des paragraphes */
p {
  text-align: justify;
}

/* Gestion des images */
.image-centree {
  display: block;
  margin: 0 auto;
}

/* Gestion des vidéos */
.video-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/* Gestion des productions */
.myProduction {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #333;
  padding: 20px;
  border-radius: 10px;
  background-color: #131112;
}