/*
↗
codesandbox color #151515
*/

*
{
	margin:0;
	padding:0;
	box-sizing: border-box;
	transition: 0.1s;
}

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;
	width: 100%;
}

.productimage
{
	width: 60%;
	display: flex;
	align-items: center;
	justify-content: center;
	float:left;
}

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

.productinfo
{
	width: 40%;
	float:left;
}

.productinfo h1
{
	font-family: 'Inter',sans-serif;
	font-weight:400;
	font-size:30px;
	color:black;
	margin-bottom: 20px;
}

.productinfo h2
{
	font-family: 'Inter',sans-serif;
	font-weight:400;
	font-size:25px;
	color:black;
	margin-bottom: 30px;
}

.productinfo label
{
	font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
	color:black;
}

.productinfo select
{
	font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
    width: 100%;
    display: block;
    padding: 10px;
	outline: transparent;
}

.productinfo button
{
	width: 100%;
    background-color: black;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 15px;
    border: 0;
    margin-top: 10px;
    user-select: none;
    cursor: pointer;
}

.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;
}

@media screen and (max-width: 1000px) {
	.productbox
	{
		display: flex;
    	flex-direction: column;
		padding:25px;
	}
	.productimage
	{
		width: 100%;
		float: unset;
	}
	.productinfo
	{
		width: 100%;
		float: unset;
	}
  }