@font-face {font-family: FpD1; src: url(fonts/BelgianoSerif2.otf);}
@font-face {font-family: FpD2; src: url(fonts/LouisGeorgeCafeLight.ttf);}
@font-face {font-family: FpD3; src: url(fonts/LTSaeada-Hairline.otf);}
@font-face {font-family: FpD4; src: url(fonts/ProductSansBold.ttf);}

:root {
    --background-color: #003852;
    --background-color: #000;
    --text-color: #FFF;
    --link-colorOFF: #888;
    --link-colorON: #FFF;

    --font-titre1: 'FpD3', sans-serif;
    --font-titre2: 'FpD1', sans-serif;
    --font-text: 'FpD4', sans-serif;

    --video-border-color: #000;
    --video-maxWidth: 720px;
}

body {
    font-family: var(--font-light);
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: var(--video-maxWidth);
    margin: auto;
}

header { text-align: center; margin: 2em 0 3em 0; z-index: 1;}

header h1 {
    font-family: var(--font-titre1);
    font-size: 4em;
    font-weight: 100;
    margin: 0;
}
header h1 span.bold {
  font-family: var(--font-titre2);
  font-weight: 700;
  font-size: 1.1em;
}
header h2 {
  font-family: var(--font-text);
  font-weight: 100;
  color: #888;
  font-size: 2em;
  margin:-5px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

main h1 {
  font-family: var(--font-text);
  font-size: .9em;
  font-weight: 100;
  line-height: .25em;
  padding: 0px;
}


.video-module {
    width: 95%;
    max-width: 720px;
    margin-bottom: 50px;
    border: 0 solid var(--video-border-color);
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}
.video-module video {width: 100%; height: auto;}

.email-link {
    margin-bottom: 30px;
  }
.email-link a {
	font-family: var(--font-text);
    color: var(--link-colorOFF);
    text-decoration: none;
}
.email-link a:hover {
    color: var(--link-colorON);
    text-decoration: none;
}

.fond {
    width: 90%, 0, 0);%;
    max-width: 720px;
    margin: 0;
    border: 1 solid var(--video-border-color);
    overflow: hidden;
    z-index: 0;
}