
body{	background: #404040;
		margin: 10px 0px 10px 0px;
		padding: 0;}
	  
.box {
	  display: flex; /* création d'une Flexbox */
	  justify-content: center;
	  align-items: center;
	  min-height: 100vh; /* 1vh Relative to 1% of the height of the viewport (the browser window size)
						donc box de la hauteur totale de l'écran du navigateur */
	  }
	 	
		
img {
		max-width: 100%;
		height: auto}