/*Ceci est une page css*/

/*CSS des images utilisées pour le site*/

img.image1 {
	width: 674px;
	height: 419px;
	border-radius: 8px;
	float: right;
	margin: 40px;
}

img.imageTuring {
	width: 337px;
	height: 459px;
	border-radius: 8px;
	float: right;
	margin: 30px;
}

img.imageENIAC {
	width: 670px;
	height: 459px;
	border-radius: 8px;
	float: left;
	margin: 30px;
}

img.imageRobot {
	width: 750px;
	height: 421px;
	border-radius: 8px;
	float: right;
	margin: 30px;
}

img.imageRobot2 {
	width: 700px;
	height: 394px;
	border-radius: 8px;
	float: left;
	margin: 30px;
}

img.imageRobot3 {
	width: 696px;
	height: 386px;
	border-radius: 8px;
	float: right;
	margin: 20px;
}

/*CSS de différents titres et textes de la page chap0*/

.titre {
	text-align: center;
	text-shadow: 2px 2px 5px grey;
	font-size: 40px;
	font-family:"Lucida Console"
}

.sommairetitre {
	text-align: center;
	text-decoration: underline;
	margin: 40px;
	
}

.texteBienvenue {
	text-align: center;
	text-shadow: 2px 2px 5px grey;
	font-size: 20px;
	font-family:"Lucida Console" 
}

/*CSS des marges de la page chap1*/

.margehaut {
	margin-top: 200px;
}

.margebas {
	margin-bottom: 200px;
}

/*CSS global de la forme du site*/

h2, h3 {
	margin: 20px;
}

h1 {
	margin: 50px;
}

body {
  background-color: lightblue;
}

p {
	font-size: 20px;
	text-align: justify;
	margin: 20px;
}

/*CSS de la barre de navigation pour aller de page en page*/

ul.navigation {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li.navigation {
  float: left;
  display: inline;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li.navigation a:hover {
  background-color: #111;
}

/*CSS des listes du site*/

ul.sommaire { 
	font-size: 20px;
	background: darkGray;
	padding: 30px;
	width: 435px;
}

ul {
	font-size: 20px;
	text-align: justify;
	margin: 20px;
}

/*CSS du tableau de la page chap5*/

 table, th, td {  border: 1px solid black;
  border-collapse: collapse;
}

table.customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 200%;
}

table.customers td, .customers th {
  border: 1.5px solid white;
  padding: 8px;
}

table.customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #808080;
  color: white;
}