15 lines
		
	
	
	
		
			228 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			228 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
body {
 | 
						|
  margin: 0;
 | 
						|
  height: 100vh;
 | 
						|
  display: flex;
 | 
						|
  justify-content: center;
 | 
						|
  align-items: center;
 | 
						|
  flex-direction: column;
 | 
						|
  text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
.buttons {
 | 
						|
  margin-top: 20px;
 | 
						|
  display: flex;
 | 
						|
  flex-direction: row;
 | 
						|
}
 |