/*
↗
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: #ffffff00;
    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;
}

.presentation
{
	width: 100%;
	height: 100vh;
	background-image: url("assets/icons/jenna-day-B-JtfqdHemU-unsplash.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

.presentation h1
{
	font-family: 'Inter', sans-serif;
    font-size: 123px;
    font-weight: 400;
    text-decoration: none;
    color: black;
    letter-spacing: -3px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: grayscale(1);
    text-align: center;
    line-height: 97px;
    font-style: italic;
    user-select: none;
}

.enterbox
{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.enterbox a
{
    padding: 11px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: black;
    border: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: white;
    box-sizing: border-box;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
}

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