body {
	margin:0;
	font-size:1em;
	font-family: georgia, Arial; 
	display: flex;
	flex-direction: column;
	background-color:#dddddd
	}

.header{
	display: flex;
	flex-direction: row; 
	justify-content: space-around;
	align-items: center;
	text-align: center;
	vertical-align: middle;  
	background-color: #b1aae7;
}

#date, #heure {
	margin:  auto;
	text-align: center;
	font-size : 1.5em;    
}

.separation {
	padding-top:3em;
	padding-bottom: 3em;
}

.body-content{
	 background-color: #dddddd;  
}

.body-content p { 
	padding-left:5em;
	padding-right: 5em;
}

.body-content ul { 
	padding-left:10em;
	padding-right: 5em;
}

.attention {
	color: red;
	font-weight: bold;
}

h2, h3 {
	text-align: center;	
	margin-top: 3em;
	margin-bottom: 3em
}

.footer{
	height: 175px;
	background-color: #000000;
}

.conteneurH {
	display: flex;
	flex-direction: row; 	
	justify-content: space-around;
	align-items: center;
	text-align: center;
	vertical-align: middle;  
}

.conteneurV {
	display: flex;
	flex-direction: column; 	
	justify-content: space-around;
	align-items: center;
	text-align: center;
	vertical-align: middle;  
}

img {
	max-width: 100%;
}

.commande {
	color: #0000ff;
	font-weight: bold;
	font-size: 1.1em
}

.attention {
	color: #0000ff;
	font-weight: bold;
	font-size: 1.1em
}

ul, ol { 
	margin-left:3em; 
}

.topnav {
  background-color: #333;  
}

.topnav::after {
    clear: both;
    content: "";
    display: block;
}

.topnav a {
  float: left;
  display: block;
  color: #F2F2F2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;  
}

.active {
  background-color: #4D4D4D;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
    float: left;
	overflow: auto;
}

.dropdown .dropbtn {
    font-size: 17px;   
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: #332B6F;
    font-family: inherit;
    margin: 0;    
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ADD8E6;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Page content */
.content {
  padding-left:1em
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky,.topnav.responsive.sticky {

  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}


@media screen and (max-width: 1000px) {

	.header {
	 flex-direction: column; 
   }
   
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .body-content p { 
	 padding-left:1em;
	 padding-right: 1em;
	} 

  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
	
	ul, ol { 
		margin: 0; 
	}
	ul li, ol li { 
		margin-left:1em; 
	}
}



