/* Feuille de style pour la mise en forme des différentes sections de la page html */
body {    
  background: url('bg_informatique.jpg');
  /* text-align: center; */
  /* background-color : #77B5FE; */
}

p { /* section paragraphe */
  font-family: times new roman;
  font-weight: bolder;
  font-size: 16px;
}

.div {
  font-size: 15px;
  background-color: transparent; /* couleur de fond : transparent */
  color: currentColor; /* couleur de texte : rouge */
  font-weight: bolder; /* mise en gras du texte */
  margin: 10px;
  padding: 10px; 
  border-color: blue;
  border-style: none; /* aucune bordure */
} 
