/*I wish I could align my text boxes to the center :(*/
h1 {
  color:black;
text-align: center;
  font-size: 50px;
  text-decoration: underline;
  text-shadow: 5px 2px 3px purple;
}
img {
  border: solid black;
  border-radius: 1em;
}
#img {
  text-align: center;
}
#box {
  text-align: center;
  background-color: #134b8c;
  max-width: 50em;
  margin: 5em;
  padding: 1em;
  border: solid black;
  box-shadow: 5px 5px 5px black;
}
h2 {
  color: #BDBDBD;
}
#links {
  list-style: none;
}
.link {
  color: #BDBDBD;
  font-size: 1em;
  font-weight: bold;
  text-decoration: underline wavy;
}
.link:visited {
  color: #71D071;
}
.link:hover {
  color: white;
  text-shadow: 3px 3px black;
}
.link:active {
  color: red;
}
body {
  background-color: #7986AC;
  background-image: linear-gradient(#134b8c, purple);
}