/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
      margin: 0;
      padding: 0;
      border: 0;
      font-size: 100%;
      font: inherit;
      vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
     line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
	    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	  content: '';
	  content: none;
}
table {
      border-collapse: collapse;
      border-spacing: 0;
}

/** End CSS Reset */

/** Utils */
.float::after {
   display: block;
   content: "";
   clear: both;
}

@font-face {
  font-family: 'geogrotesque-md';
  src: url('../geogrotesque/Geogtq-Md.otf')  format('opentype');
  font-weight: normal;
  font-style: normal;
}


body {
   background-color: #e7302a;
   font: 1em 'geogrotesque-md', sans-serif;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-shadow: 0px 1px 3px #000000;
}


/** Navigation Menu */
nav {
    text-align: center ;

    margin-top: 1em;

    z-index: -1;
}

nav ul {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

nav li {
    padding: 0 1vw; 
    font-size: 2vw;
    line-height: 4em;
}

nav a {
    text-transform: uppercase;
}


nav li img {
    height: 4em;
}

nav li img:hover {
    filter: brightness(1) drop-shadow(0px 1px 2px black);
}

/** Footer */
footer {
    max-width: 1500px;
    width: 95%;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 1em auto;
}


footer img {
    max-width: 2em;
}


footer a img:hover {
   filter: invert(100%) drop-shadow(0px 1px 3px black);
}

nav li#a_propos a {
    color: #ffffff;
    text-shadow: 0px 1px 3px #000000;
}

main {
   font-family: 'geogrotesque-md', sans-serif;
   width: 95%;
   max-width: 1500px;

   margin: 0 auto;
   font-size: 1.5em;

   display: flex;
   flex-flow: row wrap;
   justify-content: space-evenly;
   align-items: center;
}

#synopsis {
   flex-grow: 1;
}

#synopsis p {
  text-align: justify;
  margin-bottom: 1em;
}


#affiche {
   flex-grow: 0.5;
}

#affiche img {
    display: block;
    margin: 0 auto;
    border: 4px black solid;
    max-width: 100%;
}

#distribution {
   flex-grow: 0.5;
}

#distribution table {
   margin: 1em auto;
}

#distribution td {
   padding: 0 0.5em;
}

#distribution table .empty {
   height: 0.5em;
}


