:root {
	font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	font-weight: 400;
	font-size: 1.2vw;
  
	color-scheme: light dark;
	color: rgba(255, 255, 255, 0.87);
	background-color: #000;
  
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
  
	--bg-grid-colour: #090909;
	--bg-grid-thickness: 1px; /* adjust this value to change the line thickness */
	--bg-gap-thickness: 20px; /* adjust this value to change the gap width */
	--bg-column-thickness: calc(100vw / 12); /* adjust this value to change the column width */
	--text-main-colour: rgba(255, 255, 255, 0.87);
	margin: 0;
  }
  
body {
	scrollbar-width: thin;
	margin: 0;
}
  
  h1 {
	font-size: 3.2em;
	line-height: 1.1;
  }
  
  hr {
	border: 1px solid #34312b;
	width: calc(100% - 2px);
  }
  
  .card {
	padding: 2em;
  }
  
  #app {
	position: relative;
	text-align: center;
	width: 100vw;
  }
  
  .background-grid {
  
	background: 
	  repeating-linear-gradient(
		to right, 
		transparent 0px, 
		transparent calc(.5 * var(--bg-column-thickness)),
  
		var(--bg-grid-colour) calc(.5 * var(--bg-column-thickness)), 
		var(--bg-grid-colour) calc(.5 * var(--bg-column-thickness) + var(--bg-grid-thickness)), 
  
		transparent calc(.5 * var(--bg-column-thickness) + var(--bg-grid-thickness)), 
		transparent calc(.5 * var(--bg-column-thickness) + var(--bg-grid-thickness) + var(--bg-gap-thickness)), 
  
		var(--bg-grid-colour) calc(.5 * var(--bg-column-thickness) + var(--bg-grid-thickness) + var(--bg-gap-thickness)), 
		var(--bg-grid-colour) calc(.5 * var(--bg-column-thickness) + 2 * var(--bg-grid-thickness) + var(--bg-gap-thickness)), 
  
		transparent calc(.5 * var(--bg-column-thickness) + 2 * var(--bg-grid-thickness) + var(--bg-gap-thickness)), 
		transparent calc(var(--bg-column-thickness) + 2 * var(--bg-grid-thickness) + var(--bg-gap-thickness))
	  );
	  background-position: center;
	  background-attachment: fixed;
  
  }
  
  button {
	color: white;
	border-radius: 8px;
	border: 1px solid transparent;
	padding: 0.6em 1.2em;
	font-size: 1em;
	font-weight: 500;
	font-family: inherit;
	background-color: #1a1a1a;
	cursor: pointer;
	transition: border-color 0.25s;
  }
  
  button:hover {
	border-color: #646cff;
  }
  
  button:focus,
  button:focus-visible {
	outline: 4px auto -webkit-focus-ring-color;
  }
  
  /* @media (prefers-color-scheme: light) {
	:root {
	  color: #213547;
	  background-color: #ffffff;
	}
  
	a:hover {
	  color: #747bff;
	}
  
	button {
	  background-color: #f9f9f9;
	}
  } */