/*
↗
*/

*
{
	margin:0;
	padding:0;
	transition: 0.1s;
}

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

body
{
	text-decoration:none;
	background-color:white;
	box-sizing: border-box;
	height:100%;
	width:100%;
	font-family: 'Inter',sans-serif;
	display: flex;
	justify-content: center;
	padding-left:20px;
	padding-right:20px;
}

.giantbox
{
	box-sizing: border-box;
	width:650px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header
{
	width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    background-color: rgb(255 255 255);
    z-index: 9;
    box-shadow: 0px 20px 15px rgba(255, 255, 255, 1);
}

.headerinner
{
	width: 650px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerlogo a
{
	font-family: 'Zilla Slab', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.headerlogo a img
{
	width:20px;
	user-select: none;
	pointer-events: none;
	margin-right: 5px;
}

.headerlink
{
	display: flex;
	align-items: center;
}

.headerlink button
{
	text-decoration: none;
	font-family: 'Inter';
	font-size:15px;
	font-weight:400;
	color:grey;
	display: flex;
	align-items: center;
	text-decoration: none;
	border:0;
	background-color: transparent;
	user-select: none;
	cursor: pointer;
}

.headerlink button img
{
	width:20px;
	user-select: none;
	pointer-events: none;
}

.headerlink button:active
{
	opacity: 0.7;
}

.storybox
{
	width: 100%;
	box-sizing: border-box;
	margin-top: 125px;
}

.story
{
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 60px;
	white-space: pre-line;
	font-size: 14px;
	font-family: 'Inter',sans-serif;
	font-weight:400;
	color:#1a1a1a;
	box-shadow: inset 0px -25px 28px -4px rgba(255,255,255,0.1);
}

.story h1
{
	font-size:20px;
	font-weight:700;
}

.story h4
{
	font-size: 11px;
	font-weight:500;
	color:grey;
	margin-bottom: 5px;
}

.story h2
{
	font-size:20px;
	font-weight:700;
	letter-spacing: -0.3px;
}

.story a
{
	white-space: pre-line;
	font-size: 14px;
	font-family: 'Inter',sans-serif;
	font-weight:400;
	text-decoration: none;
	color:#1a1a1a;
}

.footerbox
{
	width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    /* padding-top: 50px; */
    /* padding-bottom: 50px; */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #1a1a1a;
    border-radius: 15px 15px 0px 0px;
}

.footer
{
    width: 800px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap:30px;
}

.footerelement img
{
    width:150px;
    box-sizing: border-box;
    user-select: none;
    pointer-events: none;
    margin-bottom: 10px;
}

.footerelement p
{
	font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: grey;
    margin-top: 5px;
}

.footerelement h2
{
	font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #dadada;
    margin-bottom: 10px;
}

.footerelement a
{
	font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: grey;
    text-decoration: none;
    display: flex;
    margin-bottom: 10px;
}

.footerelement a:hover
{
    text-decoration: underline;
}

.footerelementlogo h2
{
	font-family: 'Zilla Slab', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #f2f2f2;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.footerelementlogo h2 img
{
	width: 20px;
    user-select: none;
    pointer-events: none;
	margin:0;
    margin-right: 5px;
}

@media screen and (max-width: 800px) {
	.giantbox{
		width: 100%;
	}
	.headerinner{
		width: 100%;
		padding-left:20px;
		padding-right: 20px;
	}
	.footer
    {
        width: 100%;
        grid-template-columns: 1fr;
        text-align: center;
    }
	.footerelementlogo h2
	{
		justify-content: center;
	}
    .footerelement a
    {
        justify-content: center;
    }
}
