html
{
  background: #eee;
  font-family: verdana;
}

body
{
  width: 95%;
  margin: auto;
}

h1
{
  letter-spacing: 3px;
}

nav#menu-haut ul
{
  list-style-type: none;
  display: flex;
  border-bottom: 1px solid black;
  width: 90%;
  margin:auto;
  padding-left:10px;
  padding-bottom: 10px;
  letter-spacing: 2px;
  font-variant: small-caps;
}

nav#menu-haut ul > li
{
  margin-left: 10px;
}

nav#menu-haut ul > li::before
{
  content:">";
  margin-right: 10px;
}

nav#menu-haut ul > li:last-child
{
  font-weight: bold;
}

nav#menu-haut ul > li:first-child
{
  font-weight: normal;
  margin:0px;
}

nav#menu-haut ul > li:first-child::before
{
  margin-right: 0px;
  content:"";
}

div#contenu
{
  width: 90%;
  margin:auto;
  margin-top:20px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

div#contenu > a.fichier
{
  width: 20%;
  text-align: center;
  margin-bottom: 30px;
  display: block;
  text-decoration: none;
  color:#222;
}

div#contenu > a.fichier p
{
  word-break: break-word;
  padding:0px 10px;
}

div#contenu > a.fichier:hover > p:first-child
{
  opacity: 0.7;
}

div#contenu > a.fichier.vide
{
  background: none;
  cursor: default;
}

div#contenu img
{
  width: 96px;
}

/* ----- Responsive ----- */

@media screen and (max-width: 1280px)
{
  div#contenu > a.fichier
  {
    width: 25%;
  }
}

@media screen and (max-width: 1024px)
{
  div#contenu > a.fichier
  {
    width: 33%;
  }
}

@media screen and (max-width: 768px)
{
  div#contenu > a.fichier
  {
    width: 100%;
  }
}
