/* background styles */

body {
  background-image: url("images/ship.jpg");
  min-height: 500px;
  /* Set background image to fixed (don't scroll along with the page) */
  /*background-attachment: fixed;*/
  background-position: right top;
  /* Set the background image to no repeat */
  background-repeat: no-repeat;
  /* Scale the background image to be as large as possible */
  background-size: cover;
}
