/* 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: linear-gradient(135deg,  rgba(149,149,149,1) 0%,rgba(13,13,13,1) 46%,rgba(1,1,1,1) 50%,rgba(28,48,192,1) 53%,rgba(103,78,205,1) 69%,rgba(231,56,197,1) 87%,rgba(27,27,27,1) 100%);

  background-size: cover;       /* make it fill the screen */
  background-repeat: no-repeat; /* stop tiling */
  background-position: center;  /* center it nicely */
  margin: 0;                    /* remove default spacing */
  height: 100vh;                /* make it full screen */
}


  color: black;
  font-family: Verdana;
}