body {
  text-align: center;
  font-size: 40px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  color: white;
  cursor: url("http://www.javascriptkit.com/dhtmltutors/cursor-hand.gif") 10 3,
    auto;
  background-image: url("ocean_background.jpg");
  background-color: black;
}
.link {
  margin-top: 100px;
  margin-bottom: -50px;
  font-size: 30px;
}
.box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}
.desc {
  font-size: 30px;
}
.warning {
  font-size: 25px;
}
#blub {
  position: relative;
  top: 175px;
  left: 120px;
  font-size: 75px;
  -webkit-animation: moving 5s infinte;
  animation: moving 5s infinite;
}
@keyframes moving {
  0% {
    top: 100px;
  }
  50% {
    top: 300px;
  }
  100% {
    top: 100px;
  }
}
h3 {
  margin-top: -15px;
  margin-bottom: 50px;
}
footer {
  font-size: 20px;
  text-align: right;
  margin-top: 130px;
  margin-right: 25px;
  margin-bottom: 25px;
  color: black;
}
img {
  border: 10px solid white;
  margin-bottom: -90px;
}
img:hover {
  border-color: lightblue;
}
