body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  color: #333;
  font-size: 24px;
  font-weight: bold;
}

p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

nav {
  margin-bottom: 20px;
}

nav a {
  margin-right: 15px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

div.hero {
  color: #fff;
  text-align: center;
  position: absolute;
  top: calc(33.33% - 50px);
  left: 50%;
  transform: translateX(-50%);
}

main {
  padding: 20px 0;
}

section {
  margin-bottom: 20px;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding: 20px 0;
  border-top: 0px;
  text-align: center;
}

footer > p {
  color: rgb(255, 254, 234);
}

.highlight {
  background-color: #ffc107;
  padding: 2px 4px;
  border-radius: 2px;
}

/* Shamelessly stolen from https://codepen.io/tedmcdo/pen/PqxKXg */

html,
body,
main {
  height: 100vh;
}
body {
  background: radial-gradient(
    ellipse at center,
    rgba(255, 254, 234, 1) 0%,
    rgba(255, 254, 234, 1) 35%,
    #b7e8eb 100%
  );
  overflow: hidden;
}

.ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #015871;
}

.wave {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg)
    repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite,
    swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {
  0%,
  100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
