19 lines
		
	
	
		
			198 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			198 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
html,
 | 
						|
body,
 | 
						|
#__next {
 | 
						|
  padding: 0;
 | 
						|
  margin: 0;
 | 
						|
  min-height: 100vh;
 | 
						|
  display: flex;
 | 
						|
  flex-direction: column;
 | 
						|
}
 | 
						|
 | 
						|
a {
 | 
						|
  color: inherit;
 | 
						|
  text-decoration: none;
 | 
						|
}
 | 
						|
 | 
						|
* {
 | 
						|
  box-sizing: border-box;
 | 
						|
}
 |