: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;
}

/*https://dollarchive.neocities.org/compendium/spine/borders 
great frames*/



        ::-webkit-scrollbar {
        width: 0;
        /* remove scrollbar space */
        background: transparent;
        /* to make scrollbar invisible */
        }

        ::-webkit-scrollbar-thumb {
        background: transparent;
        }