#canvas1 {
    background-color: White;
    width: 350px;
    height: 350px;
}

select {
    width: 150px;
    text-align: center;
    
}

.boutton {

	width: 60px;
	font-weight: bold;
}

table input {
	font-size: 15px;
	font-weight: bold;
	width: 200px;
	margin: 3px;
	text-align: center;
}



table{
	cellpadding:10px;
	border-collapse: collapse;
	margin: 10px;

}
table td{
	border: groove;
	width:200px;
	text-align: center;
}

canvas {
	border: groove;
	margin: 10px;
}

.images {
	width: 320px;
}

table tr:nth-child(odd){
  background-color:#D3E0FF;
}

@media screen and (min-width: 780px) {

.wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(70px, auto);
}

.zero {
  grid-column: 1/3;
  grid-row: 1;
}
.one {
  grid-column: 1;
  grid-row: 2;
}
.two { 
  grid-column: 2;
  grid-row: 2 ;
}
.three {
  grid-column: 1;
  grid-row: 3 ;
}
.four {
  grid-column: 2;
  grid-row: 3;
  
}
}