20 lines
		
	
	
		
			243 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			243 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| html,
 | |
| body,
 | |
| #game-container {
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| #game-container {
 | |
|   /*min-width: 100vw;
 | |
|   min-height: 100vh;*/
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| #game-container>canvas {
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | 
