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

/*Header Styles*/
.header {
  background-image: url("https://media.giphy.com/media/DjYqNVITTewEM/giphy.gif");
  height: 200px;
  background-position: center center;
}

body {
  background-color: Pink;
  color: black;
  font-family: "Freestyle Script";
  text-align:center;
}

h1 {
  color:#ff0066;
  font-size:80px;
  text-decoration:underline;
  text-shadow: 3px 2px white;
}

h2 {
  color:#cc0052;
  font-size:70px;
  
}

h3 {
  color:#990099;
  font-size:60px;
}

p {
  color:#ff0000;
  font-size:40px;
}

ul {
    color:#ff0066;
    font-size:40px;
    text-align:left;
}

a {
  color:#ff0000;
}

img {
  border-radius:40%;
  margin:auto;
  display:block;
}

img:hover {
  border-radius:100%;
  margin:auto;
  display:block;
}
