/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
/*  background-color: white;
  color: black;
  font-family: Verdana;
*/  
  background-color: #000000;
  color: white;
  a:visited {color:yellow};
  a:link {color:yellow};
  a:hover {color:red};
  a:active {color:red};
  /*font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  */
  /*@font-face {
  font-family: myFont;
  src: url("retrofont.ttf");
  }
  p {font-family: myFont;}
  */
opacity: 1;
background-image:  linear-gradient(30deg, #19ab65 12%, transparent 12.5%, transparent 87%, #19ab65 87.5%, #19ab65), linear-gradient(150deg, #19ab65 12%, transparent 12.5%, transparent 87%, #19ab65 87.5%, #19ab65), linear-gradient(30deg, #19ab65 12%, transparent 12.5%, transparent 87%, #19ab65 87.5%, #19ab65), linear-gradient(150deg, #19ab65 12%, transparent 12.5%, transparent 87%, #19ab65 87.5%, #19ab65), linear-gradient(60deg, #19ab6577 25%, transparent 25.5%, transparent 75%, #19ab6577 75%, #19ab6577), linear-gradient(60deg, #19ab6577 25%, transparent 25.5%, transparent 75%, #19ab6577 75%, #19ab6577);
background-size: 80px 140px;
background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}