/* 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-image: url(cloudz.png);
  background-color: silver;
}

p {
  text-align: center;
  color: black;
  font-family: times, serif;
  font-weight: normal;
  padding: 0px;
}

b {
  font-size: large;
}

img {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  border: 12px ridge darkkhaki;
  display: block;
}

ul {
  text-align: center;
  margin-top: 28px;
}

li {
  display: inline-block;
}

a {
  background-color: silver;
  border: 24px outset lightgray;
  font-family: times;
}

a:hover {
  background-color: gold;
  border: 24px outset yellow;
} 

a:active {  
  background-color: mediumturquoise;
  border: 24px outset cyan;
}  