h1 {
  color:blue;
  text-align:center;
}
h3{
 color: white;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue; 
}
nav {
 	display:flex;
  padding-top:10px;
  justify-content:space-between;
}
p{
  width:20%;
  
}

section {
 	margin:10px;
  padding:10px;
  border: solid 3px blue;
}

main{
  display:flex;
  justify-content:space-around;
  /*margin-left:20px; */
}
a:hover, a:active {
  font-size: 110%;
  background-color:lightblue;
  border-radius:5px;

}
a:visited{
 	text-decoration:underline; 
}
a:link{
 	text-decoration:none; 
}
