/* 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 {
  /* The first linear gradient covers the left chunk, making the left transparent
  then the middle and right chunk are created with another linear gradient */
  /*202c51 10F1FF 10FF1B*/
  background: linear-gradient(90deg, green 15%, rgba(0, 0, 0, 0) 15%), linear-gradient(90deg, black 85%, green 85%);
  color: #E9F5EA;
  font-family: Lucida Console;
  margin-left: 20%;
  margin-right:20%;
}