/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: blue;
  font-family: Verdana;
  
}

p {
  
border : 3px green dotted;
background-color: yellow;
  
}

.demiportion {
  
width:50%;  
}

.lutin {
color : green;
font-size:20px;
  
}

img {
width:20%;  
margin-left:50%;  
}


td /* Toutes les cellules des tableaux... */
{
    border: 1px solid black; /* auront une bordure de 1px */
    margin:10px;
}

table
{
    border-collapse: collapse; /* Les bordures du tableau seront collées (plus joli) */
    
}