/* 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:red;
background-image: url("windowsxp.png");
background-size: cover;
font-family:monospace;
list-style-type: none;
}

.joehawley {
  color:black;
  border:red groove 5px;
  background-color:#e3e2de;
  margin-left: 1000px;
  margin-right: 5px;
  position: fixed;
}

.textonormal {
  color:red;
  border:red groove 2px;
  background-color:#a3a3a3;
  position: absolute;
}
  
.blinkies {
 list-style-type: none;
}
