:root {
		--backgroundSize: 50px;
	}

* { 
	box-sizing: border-box;
}

body {
  box-sizing: border-box;
  margin:0;
  height: 100vh;
  background-size: var(--backgroundSize);
  color: wheat;
  display: grid;
  place-items: center;
  
}