/* CSS Document */
body{
  background: lightgreen;
}
h1 {
  color: hotpink;
  text-shadow: 3px 3px 6px;
  font-size: 300%;
}
a,
a:link,
a:visited {
  color: black;
  background-color: lightpink;
  text-decoration: none; 
  display: block; 
  font-size: 35px;
  border: solid white 5px;
  width: 300px;
  height: 100px;
  text-align: center;
  line-height: 50px;
  box-shadow: 15px 15px hotpink;
  
  margin-top: 20px;
}
.button:hover {
  position: relative;
  left: 15px;
  top: 15px;
  box-shadow: 0 0 white;
}
p {
	
}