/* 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." */
/* gradient info goes in the first two lines in body, or five lines if you picked max compatibility */

body {
background: rgb(102,40,90);
p {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/4/4e/Pleiades_large.jpg');
  background-repeat: no-repeat
}
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EC9CC3",endColorstr="#EC9CC3",GradientType=1); 
color: #EC9CC3;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
letter-spacing: 2px;
}


img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 20%;
}

/* regular button with color change on hover */

a:link {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: magenta;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: teal;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}