/*
    Auteur : Dorian Barras
    Page   : Style Infos Générales
    Date   : 20.12.19
*/
/*Style général (image de fond, alignement du texte, ...)*/
body{
  background-image: url(../images/Fond.jpg);
  background-position: top center;
  background-size: cover;
  text-align: center;
  font-family: arial;
  height: 100vh;
}
/*Bordures et coins adoucis*/
h1, p, img{
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
  background-color: #EFCFF9;
}
/*Dimensions du titre*/
h1{
  font-size: 3em;
  width: 30%;
  margin: auto;
}
/*Limitation de la longueur du texte en horizontal*/
p{
  width: 30vw;
  text-align: justify;
  font-size: 1.4em;
}
/*Alignement à droite et redimention des images*/
img{
  width: 20%;
  float: right;
  margin-right: 2%;
}
/*Menu de navigation*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: fixed;
  bottom: 0;
  width: 100%;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
}

.active {
  background-color: #EFCFF9;
}