  @font-face {
  font-family: 'Both';
  src: url('./both.ttf')  format('truetype'); /* Safari, Android, iOS */
  }

  :root {
   

   /* Always applied */
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --background-body: black; /* Only applied in dark mode (overrides previous declarations while applied) */
    }

    .snow {
  	z-index: 	-999999;
  	color: 		rgba(255,255,255,0.25);
  	}
  }

  @media (prefers-color-scheme: light) {
    :root {
      --background-body: white; /* Only applied in light mode (overrides previous declarations while applied) */
    }

    .snow {
  	z-index: 	-999999;
  	color: 		rgba(80,200,240,0.25);
  	}
  }



  .snow p {
  text-shadow: none;
  }

h1 {
   	font-family: 'Both'
   }
  
}