	/* CSS Document */
	/*
		jerrym
		Author: gamoorehead
		Date: 6-23-2016
	*/
	* {
  		margin: 0;
  		padding: 0; }

	body {
  		font-size: 2.1em;
  		line-height: 1.5em;
  		font-family: "Times New Roman", Times, serif;
  		color: #FF0;
  		text-align: center;
  		background-image: url("seascape6.png");
 		 background-position: center;
 		 background-size: 100%; }

	div .adv {
  		color: transparent;
  		font-weight: bold;
  		-webkit-transition-property: color, text;
  		-webkit-transition-duration: 1s, 1s;
  		-webkit-transition-timing-function: linear, ease-in;
  		-moz-transition-property: color, text;
 		-moz-transition-duration: 1s;
		-moz-transition-timing-function: linear, ease-in;
		-o-transition-property: color, text;
		-o-transition-duration: 1s;
		-o-transition-timing-function: linear, ease-in; }

	div .adv:hover {
  		color: yellow; }
			
	@keyframes adventure{
    		0%   from (opacity: 0;)
			to (opacity: 1;)
	}
	#ship {
  		width: 560px;
 		height: 480px;
  		position: relative;
  		left: 1400px;
 	 	animation-timing-function: Linear;
  		-webkit-animation-name: ship;
  /* Chrome, Safari, Opera */
  		-webkit-animation-duration: 15s;
  /* Chrome, Safari, Opera */
  		animation-name: ship;
  		animation-duration: 15s;
  		animation-delay: 2s; }

  /* Chrome, Safari, Opera */
	@-webkit-keyframes ship {
  		0% {
    		left: 1400px;
    		top: 10px; }
  		100% {
    		left: -600px;
   		top: 10px; } }
	@-mos-keyframes ship {
  		0% {
    		left: 1400px;
    		top: 10px; }
  		100% {
    		left: -600px;
    		top: 10px; } }
	@-o-keyframes ship {
  		0% {
    		left: 1400px;
    		top: 10px; }
  		100% {
    		left: -600px;
    		top: 10px; } }
  /* Standard syntax */
	@keyframes ship {
  		0% {
    		left: 1400px;
    		top: 10px; }
  		100% {
    		left: -600px;
    		top: 10px; } }
  /*# sourceMappingURL=seascape.css.map */


