
*{
	padding:0;
	margin:0;
	font-family: "Rubik", sans-serif;}
	
a{
	text-decoration: none;
}


header {
	padding-top: 40px;
	width: 95px; /* Largeur du header */
	height: 100vh; /* Hauteur de l'écran */
	text-align: center;
	color: white;
	background-color: rgb(19, 19, 19);
	font-size: 10px;
	position: fixed; /* Fixer le header à l'écran */
	left: 0; /* Aligner le header sur la gauche */
	top: 0; /* Aligner le header en haut */
	display: flex; /* Utiliser un affichage flex pour placer les éléments verticalement */
	justify-content: center; /* Centrer verticalement les éléments */
  }
  
  #logo{
	width:50px;
  }
  header ul {
	margin: 0;
	padding: 0; /* Supprimer le padding pour éviter l'espace supplémentaire */
	list-style-type: none;
  }

  header li{
	margin-bottom:30px;
  }
  
  header a {
	text-decoration: none;
	color: white;
	padding: 0px ;
	transition: font-size 0.3s ease;
  }
  
main{
	height:100%;
	background-color:white;
	min-height:600px;

}

h1 {
text-align: center;
padding-bottom: 10px;
padding-left:80px;
padding-top:30px;
font-size:20px;
font-family: "Rubik", sans-serif;

}

#title{
	font-size:50px;
	color:#e62e2c
	
}

.container h2 {
    text-align: center;
    margin-bottom:20px;
	padding-left:80px;;
}

#image_liste{
	max-width:150px;
	max-height: 200px;
	margin-top:10px;
}

#recherche{
	margin: 0 auto;
	position: relative;
	left:33px;
	text-align: center;
	display:flex;
flex-direction: column;
}

#image_recherche{
	max-width:250px;
	max-height: 300px;
	margin-top:10px;
	margin-left:100px
}

#recherche{
	margin: 0 auto;
}

#affichage_liste h3{
	background-color:#e62e2c;
	padding:2px 33px;
	border-radius: 50px;
}

#affichage_liste{
	display:flex;
	margin-left:75px;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
}

.erreur img{
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
	margin-left:8px;
	height:200px;
	
}

.container form {
    text-align: center;
	padding-left: 80px;
}

.container input {
    padding: 10px;
    width: 70%;
    margin-right: 10px;
}
.container button {
	margin-top:5px;
    padding: 10px 20px;
	background-color: black;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
	transition: all 0.3s ;
}
.container button:hover {
background-color: #e62e2c;
}

.container{
	margin: 50px auto;
	margin: 100px;
}

.container p{
	text-align:center;
}

.container ul{
	margin:0 auto;
	padding-left:80px;
}
.container li{
	
	list-style-type:none;
	text-align: center;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
	margin-bottom: 30px;
	border-radius: 5px;

}

h3{
	text-align:center;
}
#resume{
	margin-left:100px;

	font-family: "Nunito", sans-serif;
}
.container h3{
	background-color:#e62e2c;
	padding-bottom:10px;
	color:white;
	border-top-left-radius:5px;
	border-top-right-radius:5px;

}
ul img{
	max-width: 100px;

}

aside{
	margin-left: 10px;
	margin-bottom: 10px;
}

.article-image img {
	width: auto; /* Afin d'éviter les débordement des images */
	height: 150px;
	transition: height 0.3s ease;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
	border-radius: 5px;

}
.article-infos{
	text-align: center;
	color:white;
	text-decoration: none;
	background-color: #e62e2c;
	border-radius: 5px;

}

.article-image img:hover {
	height:170px;
}

#produits{
	padding-left:85px;
	margin-top:50px;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	
}

#produits article{
 margin-bottom:25px;
 margin-right:30px;
 
}

footer{
	height:100px;
	background-color:rgb(19, 19, 19);
	color:white;
	text-align:center;
	padding-top:30px;
	padding-left:85px;
}

/*------------------------------------*\
    $Version Tablette
/*------------------------------------*/

@media screen and (min-width: 480px) {
		header{
			font-size:12px;
		}
		header a:hover{
			font-size:17px;
		}
		.container ul{
			width: 400px;
		}

		h1{
			font-size:30px;
		}

		ul img{
	max-width: 130px;
		}

	.erreur img{
		margin-left: 480px;
	}

	#title{
		font-size:70px;
		color:#e62e2c
	}

.liste{
	display:grid;
}
}

@media screen and (min-width: 960px) {
	.liste{
		display:grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
}