/*
↗
codesandbox color #151515
*/

*
{
	margin:0;
	padding:0;
	box-sizing: border-box;

}

html, body
{
	scroll-behavior: smooth;  /*effet smooth sur toutes les ancres*/
	box-sizing:border-box;
}

button:active
{
	transform: scale(0.95);
	opacity: 0.8;
}

body
{
	text-decoration:none;
	background-color:white;
	box-sizing: border-box;
	height:100%;
	width:100%;
	font-family: 'Inter',sans-serif;
	-webkit-tap-highlight-color: transparent;
}

.header
{
	width: 100%;
    height: 100px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    position: fixed;
    top: 0;
}

.headerbutton button
{
	border:0;
	background-color: transparent;
	cursor: pointer;
}

.headerbutton img
{
	width: 30px;
	user-select: none;
	pointer-events: none;
	filter: invert(1);
}

.headerlogo h2
{
	font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: black;
    font-size: 30px;
    letter-spacing: -1px;
    font-style: italic;
}

.productbox
{
	padding:50px;
	margin-top: 100px;
}

.productboxtitle
{
	width: 100%;
	margin-bottom: 20px;
}

.productboxtitle h2
{
	font-size:40px;
	font-family: 'Inter',sans-serif;
	font-weight:200;
	color:black;
}

.products
{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-gap:10px;
}

.product a
{
	text-decoration: none;
	color:black;
}

.productimage
{
	width: 100%;
	aspect-ratio: 9/12;
	background-color: white; /*ebebeb*/
	display: flex;
	align-items: center;
	justify-content: center;
	padding:30px;
}

.productimage img
{
	width: auto;
	max-width: 100%;
	user-select: none;
	pointer-events: none;
}

.productdata
{
	margin-top: 10px;
}

.productdata h2
{
	font-family: 'Inter',sans-serif;
	font-weight: 400;
	font-size:17px;
	color:black;
	margin-bottom: 5px;
}

.productdata h3
{
	font-family: 'Inter',sans-serif;
	font-weight: 400;
	font-size:15px;
	color:grey;
	margin-bottom: 15px;
}

.productdata h4
{
	font-family: 'Inter',sans-serif;
	font-weight: 400;
	font-size:17px;
	color:black;
	margin-bottom: 10px;
}

.footerbox
{
	position: fixed;
	bottom:0;
	width: 100%;
	padding:20px;
}

.footer p
{
	color: grey;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    opacity: 0.8;
    letter-spacing: -0.4px;
    font-style: unset;
}