
title {
  background-color:darkslategrey;
}

body {
  background-color:#DEB887;
}


h1 {
  color:Black;
  background-color:red;
  text-align: center;
  font-size: 74px;
  
}
h2 {
  color:Black;
  background-color:red;
  text-align: center;
  font-size: 65px;
}

p {
  font-family: verdana;
  font-size: 15px;
}

/* mettre les élèments de la liste GAFAM en gras */
.maliste li{
	font-weight: bold;
	font-size: 20px;
}
	
/* redimensinner l'image 1 */
#image1{
	float:right;
	width:452px;
	height:322px;
}

/* redimensinner l'image 2 */
#image2{
	 width:400px;
	 height:300px;
}


#image3{
	float:right;
	width:450px;
	height:350px;
}

/* code de la barre de navigation */

#menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

#menu li {
  float: left;
}

#menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

#menu li a:hover:not(.active) {
  background-color: #111;
}

#menu .active {
  background-color: rgb(255, 0, 0);
}

