/* 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;
  /* background: linear-gradient(45deg, #C000C0, #FFFFFF 25%); */
  /* background: linear-gradient(0.25turn, #FFE7CF, #FFFFFF 50%, #FFFFFF); */
  /* background: linear-gradient(0.25turn,#ffbf80,#FFFFFF 50%, #ffe7cf); FLIPPED Dark to white to Orange*/
  background: linear-gradient(0.25turn,#66ccff,#FFFFFF 50%, #ccffff);
  color: black;
  font-family: Verdana;
}