/* 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: repeating-linear-gradient(
    -45deg, /* Angle of the stripes */
    #000f24, /* Color 1 */
    #000f24 20px, /* Color 1 stop */
    #ffffff 10px, /* Color 2 start */
    #000b1b 5px /* Color 2 stop */
  );
  
  color: white;
  font-family: Verdana;
}