@charset "utf-8";
.container {
	max-width: 1170px;
	margin: auto;
	overflow: hidden;
	padding: 0 15px;
	align-content: center;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
	color: #333;
}
header {
    background: #2F00F4;
    color: #fff;
	border-radius: 0px 0px 100px 100px;
    padding: 20px 0;
    text-align: center;
	box-shadow: 0px 9px 10px 0px rgba(0,0,0,0.50);
}
header h1 {
	margin: 0;
}
header img {
	filter: invert(100%);
    -webkit-filter: invert(100%);}
.product {
	background-color: #ffffff;
	border-radius: 20px;
	margin: 20px 0;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product img {
	max-width: 50%;
	border-radius: 20px;
}
.product-info {
	margin-top: 20px;
}
.product-info h2 {
	color: #333;
	margin-top: 0;
}
.product-info p {
	font-size: 16px;
	line-height: 1.5;
}
.product-info .price {
	font-size: 24px;
	color: #e8491d;
	font-weight: bold;
}
.product-info .button {
	display: inline-block;
	text-decoration: none;
	background: #e8491d;
	color: #ffffff;
	padding: 10px 30px;
	font-size: 18px;
	border-radius: 20px;
	cursor: pointer;
	transition: background 0.3s ease;
}
.product-info .buy-now:hover {
	background: #333;
}
footer {
	background: #333;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	position: absolute;
	bottom: 0p;
	width: 100%;
	border-radius: 100px 100px 0px 0px;
	box-shadow: 0px -9px 10px 0px rgba(0,0,0,0.50);
}
.logo {
	max-width: 200px; /* ou la largeur que vous souhaitez */
	margin-bottom: 20px;
}
.blog-article {
	background-color: #ffffff;
	border-radius: 20px;
	margin: 20px 0;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.blog-article h2 {
	color: #333;
}
.blog-article .blog-date {
	font-style: italic;
	color: #666;
	margin-bottom: 20px;
}
.blog-article img {
	max-width: 50%;
	border-radius: 20px;
	margin-bottom: 20px;
}
	blockquote {
    background-color: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D";
}
blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
blockquote p {
    display: inline;
}

/* Style pour les sous-titres h3 */
.product-info h3, .blog-article h3 {
    font-size: 1.17em;
    margin-top: 1em;
    margin-bottom: 1em;
}
	/* Style pour centrer les images */
.centered-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%; /* Vous pouvez ajuster la largeur selon vos besoins */
}

/* Style pour les sources */
.sources {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}