* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-image: url(../images/carbon2.png);
  background-color: #cccccc;
}
h1 { 
  color: #ff9900;
  font: normal 275% 'Backslash', arial, sans-serif;
} 

}

table, th, td {
  border: 1px solid black;
  padding: 5px;
}
table {
  border-spacing: 15px;
}
  
/* Barre latérale */
.sidenav {
  height: 100%;
  width: 230px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
}
/* Première ligne pour entête */
.content1 {
  position: relative;
  width: 100%;  
  top: 0;
  left: 10px;
  color: red;
  margin-left: 230px;
  padding-left: 10px;
  height: 100px; 
}
/* Seconde ligne pour le contenu */
.content2 {
  position: absolute;
  color: white;  
  width: 100%;  
  height: 100%;
  left: 10px;  
  top: 150;
  margin-left: 230px;
  padding-left: 10px;
}