@font-face {
	font-family: 'D-DIN';
	src: url('D-DIN-Bold.otf') format('truetype');
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Arial;
	margin: 0;
	padding: 0;
}

/* Tous les background */
.background {
	min-height: 100vh;
	width: 100%;
	background-color: #000;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	display: table;
	width: 100%;
}

/* Change la taille des h1,2,3,4 */
h1 {
	font-size: 90px;
}

h2 {
	font-size: 70px;
}

h3 {
	font-size: 60px;
}

h4 {
	font-size: 50px;
}

h5 {
	font-size: 30px;
}
@media (max-width: 430px){
	h1 {
		font-size: 80px;
	}
	
	h2 {
		font-size: 60px;
	}
	
	h3 {
		font-size: 50px;
	}
	
	h4 {
		font-size: 40px;
	}
	
	h5 {
		font-size: 20px;
	}
}

mark {
	background-color: white;
	border-radius: 3px;
}

/* Bouton pour remonter */
.scroll {
	position: relative;
    padding: 10px;
	font-size: 16px;
	background: black;
	border: solid 1px;
	color: white;
	border-radius: 10px;
	cursor: pointer;
	user-select: none;
}

.scroll:hover {
	background: white;
	color: black;
}

.stats th {
	text-align: left;
}

.stats td {
	text-align: right;
}

.scrolldown{
	position: absolute;
	left: 10px;
    bottom: 10px;
}

.scrolltop{
	margin-bottom: 16px;
}

/* lengende des images */
.caption {
	font-size: 15px;
	margin-top: 0;
}

/* Chaque partie de la page */
.page {
	min-height: 100vh;
}

.page>* {
	width: 100%;
	color: #FFF;
}

/* images */
.illu {
    width: 100%;
}

table td {
	padding: 10px;
	width: 50%;
}

table {
	width: 100%;
}

table td.img {
	width: 35%;
}

/* Contenu de chaque pages */
.content {
	background-color: #000;
	min-height: 100vh;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 25px;
	width: calc(100% - 20px);
    display: grid;
    grid-template-columns: 1fr 1fr;
	grid-column-gap: 15px;
    align-items: center;
}

/* Titre de chaque partie */
.title {
	position: relative;
	font-family: D-DIN;
    width: 100%;
	text-align: center;
	display: table-cell;
    vertical-align: middle;
}

.title  * {
    margin: 0;
}

.title h4 {
    margin-top: 10px;
}

/*  Titre sous parties */
.subtitle {
	margin: 0;
	font-family: D-DIN;
	text-align: center;
	grid-column: 1 / span 2;
}

@media (max-width: 1200px) {
	.content {
		grid-template-columns: 1fr;
		grid-column-gap: 15px;
	}
	.subtitle {
		grid-column: 1 / span 1;
	}
}

/* PARTIE HEADER */



/* Menu header */
header {
	font-family: Arial;
	width: 100%;
	background-color: #000;
	color: #fff;
	position: fixed;
	z-index: 3;
	user-select: none;
	transition: top .4s ease-in-out;
	top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Style logo SpaceX header */
.logo {
	height: 40px;
	width: auto;
	padding: 0 10px;
}

@media (max-width: 856px) {
	.logo {
		display: none;
	}
}


/* Menu cliquable */
.menu {
	display: flex;
    align-items: center;
	text-align: center;
	position: relative;
	margin: 0;
	padding: 0;
}

/* Chaque boutons differents */
.menu>li {
	position: relative;
}

/* Chaque boutons differents : texte */
.menu>li>a {
	padding: 20px 30px;
	color: #FFF;
}

/* Chaque boutons differents : texte et curseur dessus */
.menu>li.mainMenus:hover a {
	padding: 15px 30px 20px 30px;
}

/* liste */
header li {
	list-style-type: none;
}

/* Submenus cachés */
.submenu {
	display: none;
	background-color: #000;
	z-index: 3;
}

header a {
	display: inline-block;
	text-decoration: none;
}

/* liste elements submenus */
.submenu li {
	border-top: 1px solid #CCC;
}

/* texte submenus */
.submenu li a {
	padding: 15px 30px;
	font-size: 13px;
	color: #fff;
	width: 200px;
}

/* boutons pricipaux avec curseur dessus */
.mainMenus:hover {
	border-top: 5px solid #fff;
	background-color: RGBa(255, 255, 255, 0.15);

}

/* texte submenu curseur dessus */
.submenu li:hover a {
	color: #FFFFFF;
	font-weight: bolt;
}

/* submenu avec curseur dessus */
.mainMenus .submenu li:hover {
	background-color: RGBa(255, 255, 255, 0.6)
}

/* submenu affichage */
header li:hover .submenu {
	display: inline-block;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0;
}

/* Pour rendre invisble le header au scroll */
.hiddenHeader {
	transition: top .4s ease-in-out;
	top: -60px;
}

/* Pour rendre invisble les submenus du header au scroll */
.hiddenHeader:hover .submenu {
	display: none;
}

.externalbtn {
	background-color: transparent;
	padding: 0;
	font-size: 16px;
	display: flex;
	flex-shrink: 0;
	color: #FFF;
	height: 58px;
	border: none;
	cursor: pointer;
}

.externalbtn > * {
	margin: 0;
	padding-left: 5px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.externalmenu {
	position: absolute;
	transition: right .4s ease-in-out;
	width: 300px;
	right: 0;
}

.externalmenu.hiddenExternal {
	transition: right .4s ease-in-out;
	right: -300px;
}

ul.external {
	position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    margin-top: 20px;
}

.external > li {
	padding-bottom: 30px;
	color: #FFF;
	text-decoration: none;
}

.external > li a {
	color: #FFF;
}

.external > li a:hover {
	text-decoration: underline;
}

.external > li > h5 {
	margin: 20px 0px;
}

.externalmenu > .background {
	top: 0;
    position: fixed;
    z-index: -1;
}

.blur {
	position: fixed;
	transition: opacity .4s ease-in-out;
	opacity: 1;
	cursor: default;
	pointer-events:all;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background-color: RGBa(0, 0, 0, 0.7);
}

.blur.hiddenExternal {
	pointer-events: none;
	transition: opacity .4s ease-in-out;
	opacity: 0;
}

.rocket {
	position: fixed;
	height: 300px;
	left: 2%;
}

.rocketDown {
	transition: transform 1s cubic-bezier(0.13, 0.75, 1, 1);
	top: -300px;
	transform: translateY(calc(100vh + 300px));
}

.rocketTop {
	transition: transform 1s cubic-bezier(0.75, 0.13, 1, 1);
	bottom: -300px;
	transform: translateY(calc(-100vh - 300px));
}

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

.git {
	justify-content: center;
    display: flex;
    font-size: 150px;
    height: 100%;
    width: 100vw;
    align-items: center;
    color: red;
    margin: 0;
}