/* 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." */
   
/*1-set background; 2-change font to:___; customize nav bar with hover option in mind for the future; 3- */
/* body {
  background-image: url("/images/purplestars.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */


/* Background gradient */
    body {
      background: linear-gradient(to bottom, black, purple);
      color: white;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }