
/* 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;
  color: black;
  font-family: Verdana;
}
.gridpaper{
  background-size: 20px 20px;
  background-image:
    linear-gradient(to right, #cfe2f3 1px, transparent 1px),
    linear-gradient(to bottom, #cfe2f3 1px, transparent 1px);
}
.dottedpaper{
  background-size: 20px 20px;
  background-image: radial-gradient(circle, #cfe6d6 1px, #fff 1px);
}
h3 {
  border: 2px solid black;
  padding: 5px;
  display: inline;
}
.FD {
  border: 2px solid black;
  padding: 7px;
  display: inline;
}