table{
    background-color:#FAE5D3;
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse; /*fusionne les bordures*/
c
}
thead,th{
    height:40px;
}
img{
    max-height:200px;
    max-width:200px;
}
th,td{
     border: 2px solid #E11955;
}

/* pour colorer 1 ligne sur 2*/
tbody tr:nth-child(2n+1) {
    background-color: #F08080;
}