body {
  background: url(images/ship.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#sea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#content {
  width: 30em;
  margin: 3em auto 0 auto;
}
#quote {
  color: #fff;
  font-size: 1.2em;
  font-family: "Quicksand", sans-serif;
}

#links {
  position: absolute;
  top: 1em;
  right: 1em;
  list-style: none;
  text-align: right;
  color: #f2f2f2;
}
#links a {
  text-decoration: none;
  color: #f2f2f2;
  opacity: 0.5;
}
#links a:hover {
  text-decoration: underline;
  opacity: 1;
}

#links li {
  line-height: 4.6em;
}

#links a.mail img {
  width: 36px;
  padding-top: 10px;
}

@media screen and (max-width: 1024px), (orientation: portrait) {
  body {
    background-image: url(images/ship-mobile.jpg);
  }
  #content {
    width: auto;
    max-width: 30em;
    margin: 3em 1.5em 0 1.5em;
  }
  #quote {
    font-size: 1.5em;
    text-shadow: 0 1px 14px rgba(10, 40, 80, 0.35);
  }
  #links {
    position: static;
    display: flex;
    justify-content: center;
    gap: 3.5em;
    padding: 0;
    margin: 3em 0;
    text-align: center;
  }
  #links li {
    line-height: normal;
  }
}
