/* style.css */

* { 
	margin: 0; 
	padding: 0; 
} 

*, 
*::before, 
*::after { 
	box-sizing: inherit; 
} 

html { 
	box-sizing: border-box; 
	font-size: 62.5%; 
} 

.wrapper { 
	display: flex; 
	flex-direction: column; 
	justify-content: center; 
	align-items: center; 
	height: 80vh; 
} 

button { 
	padding: .5rem; 
	font-size: 1.5rem; 
} 
