
header
{
	text-align: center;
	background-color: #000000; /*met la couleur designe en fond*/
	height: auto;
	border-width: 5px ;
	border-style: solid; /*definit le style de la bordure de head*/
	border-color: #daba05; 
}

body 
{

	font-family: sans-serif; /*definit la police d'ecriture*/
   	margin: 0;
	background-color: #ffffff;
}


nav {
	
	position: fixed; /*fait en sorte que meme en scrollant on voit toujours le menue de navigation, qu'il reste a la meme place*/
    background-color: #000000;
    width: 100px;
     height: 600px;
	border-color: #daba05;
	border-width: 5px ;
	border-style: solid;
		
}

main {
	margin-top: 5%;
    background-color: #ffffff;
	width: 70%;
    margin-left: 20%;
	display: flex; gap: 10px; padding: 20px; /*permet de gerer les section contenue dans le main comme des objets distinc qui se partage l'espace*/
	box-shadow: 0 15px 33px #000000; /*donne une ombre au main*/
}




article 
{ flex: 1; /*definit comment cette section doit se partager l'espace avec les autres sections flex*/

}


aside {
	flex: 1; 
	background-color: #daba05; 
	padding-left: 30px;
}



aside mark {
	background-color: #000000;
	color:#daba00;
	margin-bottom: 20px;

}
article mark {
	background-color: #daba05; 
}


nav ul {
	list-style:none;

}

nav img:hover{ /*propriete de l'image lorsqu'elle est touche*/
background-color: #ffffff;
transform: scale(1.15); /*agrandit l'image du menue de 1.15 lorsqu'elle est touche*/
}

nav img {
	height :70px;
	width: 80px;
	margin-left: -30px;
	margin-top: 10px;
	transition: 0.2s;
}

h1
{
	color: #daba05;
	font-style: italic;
}



aside a {

	color: #ffffff;

}

.postere
{
	width: 250px;

} 

.affiche-miles-luffy
{
	width: 300px;
	height: 150px;
} 


