.container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 20px;
}

  /*BODY*/
  
body {
  background: url('../images/body/body.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

  /*HEADER*/

header {
  grid-column: 1 / 3;
  grid-row: 1;
  border-radius: 10px;
  text-align: center;
  }

header h1 {
  font-family: "Rockwell";
  color : black;
  }

h1 img {
  vertical-align: middle;
  width: 150px;
  height : 150px;
  }

  /*NAVIGATION*/
  
nav {
  font-family: "Rockwell";
  grid-column-start: 1 ;
  grid-column-end: 2 ;
  grid-row-start: 2 ;
  grid-row-end: 3;
  }
  
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: rgba(240, 240, 240, 0.4);
  border-radius: 10px;
  }
  
li a {
  display: block;
  color: #000;
  padding: 8px 0 8px 16px;
  text-decoration: none;
  text-align: justify;
  }
  
      /* Couleur hover */
li a:hover {
  background-color: #555;
  color: white;
  }

  /*ARTICLE*/
  
article {
  grid-column-start: 2 ;
  grid-row-start: 2 ;
  padding: 25px 25px 25px 25px;
  background : rgba(240, 240, 240, 0.4);
  border-radius: 10px;
  font-family: "Rockwell";
  }

article ul{
  list-style:square;
}
.picture-left{
  width: 130px;
  height: 230px;
  border-style: solid;
  border-color: transparent;
  border-radius: 10px;
}

    /*FOOTER*/
  
  
footer {
  grid-column: 1 / 3;
  grid-row: 4;
  }
    
footer p{
  color: white;
  font-family: "Rockwell";
  text-align: center;
  bottom: 0;
}
    
footer p a{
  color: white;
  font-size: 8px;
}
    
footer img{
  width: 50px;
  height: 50px;
  background-color: white;
  border-style: solid;
  border-radius: 10px;
}