body{
	margin: 0;
	font-family: Arial;
}

/*--------------------Header--------------------*/

.header{
	position: sticky;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #444;
	box-shadow: 0 0 7px #444;
	white-space: nowrap;
	letter-spacing: 2px;
}

.nav{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 1em;
}

.nav__item__link{
	font-size: 1.5em;
	font-weight: bold;
	color: #00bfff;
	text-decoration: none;
}

.nav__item{
	position:relative;
	padding: 0.3em 0.7em;
	margin: 0.5em 0.7em;
	border-left-style: solid;
	border-width: thick;
	border-color: #00bfff;
}

.nav__item:hover > .nav__item__link{
	color: #444;
	transition: .3s;
}

.nav__item::before{
	content: "";
	position: absolute;
	z-index:-1;
	top: 0;  left: 0;  right: 0;  bottom: 0;
	background: #00bfff;
	transform: scaleX(0);
	transform-origin: 0 50%;
	transition: transform .3s;
}

.nav__item:hover::before{
	transform: scaleX(1);
}

.header__title{
	padding: 0.2em 1em;
	color: #00bfff;
	font-size: 3em;
	font-weight: bold;
	user-select: none;
}

.current::before{
	transform: scaleX(1);
}

.current .nav__item__link{
	color: #444;
}

.header__title::before{
	width: 0.2em;
	content: "";
	position: absolute;
	z-index:-1;
	top: 0;  left: 0;  right: 0;  bottom: 0;
	background: #00bfff;
	transform: translateX(0.25em) scaleY(0.12) scaleX(3);
	transform-origin: 0 50%;
	transition: transform .3s;
}

.header__title:hover::before{
	transform: translateX(8.6em) scaleY(0.6) scaleX(1);
}

.burgericon{
	height: 4em;
	width: 4em;
	fill: #00bfff;
	display: none;
}

@media screen and (max-width: 1910px) {
	.header{
	flex-direction: column;
	}

	.nav{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.nav__item{
		margin: 1em 4em;
		font-size: 1.5em;
	}

	.header__title{
		white-space: normal;
		text-align: center;
	}

	.header__title::before{
	content: none;
	}
}

@media screen and (max-width: 800px) {
	.burgericon{
		display: initial;
	}

	.nav{
		display: none;
	}

	.header__title{
		font-size: 3em;
	}
}


/*--------------------Footer--------------------*/

.footer{
	bottom: 0px;
	width: 100%;
	background: #444;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}

.footer__logoiut{
	width: 10em;
	height: 4em;
	position: relative;
	margin: 1em 2em;
}

.footer__text{
	font-size: 1.2em;
	margin: 1em 2em;
}

.footer__ref{
	color:white;
}

.footer__button{
	width: 3em;
	height: 3em;
	position: fixed;
	left: 1.5em;
	bottom: 1.5em;
	z-index: 1;
	transition: transform 0.3s;
	cursor: pointer;
}

.footer__links{
	position: fixed;
	bottom: 7em;
	right: 1em;
	display: flex;
	flex-direction: column;
	justify-items: flex-end;
	align-items: center;
}

.footer__links__item{
	width: 3em;
	height: 3em;
	margin: 0.3em 0;
}



/*--------------------Main--------------------*/

.main{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main__title{
	margin: 1em 0;
	border-style: solid;
	border-width: 0 7px;
	padding: 0 1em;
	font-size: 3em;
	font-weight: bold;
	color: #0099ff;
	letter-spacing: 2px;
	transition: padding .3s;
	user-select: none;
}

.main__title:hover{
	padding: 0 .5em;
	transition: padding .3s;
}

.project{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 3em;
}

.project__vaisseau{
	position: sticky;
	top: 16em;
	height: 4em;
	width: 6em;
	margin-top: 1em;
	transform: translateY(5em);
	z-index: -1;
}

.project__title{
	font-size: 2em;
	font-weight: bold;
}

.project__section{
	margin: 2em 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	flex-wrap: wrap;
}

.logo{
	width: 30em;
	height: 10em;
}

.image{
	width: 35em;
	height: 20em;
}

.project__section__paragraph{
	font-size: 1.4em;
	text-align: justify;
	width: 30em;
	padding: 2em 0;
}

.black{
	background-color: #555;
	color: #fff;
}

.white{
	background-color: #fff;
}

.blue{
	background-color: #0099ff;
	color: #fff;
	padding: 5em 0;
}

.nobottommargin{
	margin-bottom: 0;
}