body {
  background-color: hotpink;
}

h2 {
  color: gold;
  text-align: center;
  font-size: 50px;
  letter-spacing: -4px;
  text-shadow: 2px 2px 5px lightblue;
}

img {
  border: dotted lightblue 8px;
  
}

img:hover {
  border: dotted lightblue 12px;
}


nav {
  list-style-type: none;
  position: fixed;
  width: 100vw;
  background-color: antiquewhite;
  left: 0;
  top: 0;
}

li {
  display: inline;
  float: right;
  padding: 11px;
}
a {
  text-decoration: none;
  color: salmon;
}
li:hover {
  background-color: gold;
}
