/* 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." */

 /* unvisited link */
a:link {
  color: red;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: red;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: red;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: red;
  text-decoration: underline;
}
 
 img {
  max-width:100%;
 }

h1 {
  font-size: 40px;
}

body {
  padding:180px;
  background-color: black;
  text-align: center;
  color: white;
  font-family:'Comic Sans MS', serif;
}

div {
  padding: 100px;
}

#spread {
  height: 30px;
  width: 10%;
}