:root {
		--backgroundSize: 50px;
		
	}

* { 
	box-sizing: border-box;
}

body {
box-sizing: border-box;
  margin:0;
  height: 100vh;
  background-image: url(https://i.imgur.com/SmRv571.png);
  background-size: var(--backgroundSize);
  color: var(--tan);
  display: grid;
  place-items: center;
}
body:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

        ::-webkit-scrollbar {
        width: 0;
        /* remove scrollbar space */
        background: transparent;
        /* to make scrollbar invisible */
        }

        ::-webkit-scrollbar-thumb {
        background: transparent;
        }
