body {
  background-image: linear-gradient(#134b8c, purple);
}
#container {
display: flex;
  flex-wrap: wrap;
  justify-content: center; 
   flex-direction: column;
}
.sticky{
  position: sticky;
  top: 0;
}
#header {
  color: black;
  text-align: center;
  font-size: 1.9em;
  text-decoration: underline;
  text-shadow: .05em .05em .1em purple;
}
#figure {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: default;
  max-width: 80%;
  height: default;
  max-height: 80%;
  margin: 5em;
   margin-left: auto;
  margin-right: auto;
}
#image{
  border: solid black 3px;
  border-radius: 1em;
}
.box {
  text-align: center;
    color: #bdbdbd;
  background-color: #134b8c;
  border-radius: 1em;
   width: 80%;
  max-width: 40em;
  margin: 5em;
  padding: 1em;
  border: solid black;
  box-shadow: 1em 1em .1em black;
  margin-left: auto;
  margin-right: auto;
}
.link {
  color: #bdbdbd;
  font-size: 1em;
  font-weight: bold;
  text-decoration: underline straight;
}
.links {
  list-style: none;
  padding-left: 0;
}
.link:visited {
  color: #71D071;
}
.link:hover {
  color: white;
  text-shadow: .25em .25em black;
}
.link:active {
  color: red;
}
@media (min-width: 700px) {
  #container {
    max-width: 100vw;
  }
}
@media (min-width: 1000px) {
  #container {
    max-width: 200vw;
}
}