/* 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 {
  color: black;
  font-family: "Courier New", serif;
  background-image:
    radial-gradient(#FF69B4 35%, transparent 0), 
    radial-gradient(#FF69B4 23%, transparent 0);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

a:link {
	color:blue;
}
a:visited {
	color:blue;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
