/*
   New Perspectives on HTML and CSS
   Tutorial 4
   Case Problem 4

   LB Offshore Adventures Style Sheet
   Author: Daniel Wentzel
   Date:   3/6/2016

   Filename:         fishing.css
   Supporting Files: 

*/

   nav{
     display: inline;
     text-align:center;
     font-size:18pt;	
    }

   ul{
	 border:3px double black;
    }

   li{
	 display:inline;
	 margin: 10px;
	 list-style-type: none;
    }

   li a:hover {
	 background-color: black;
	 color:white;
    }

   body{
     background-image: url(ocean.jpg);
     background-size: cover;
     background-position: center,center;
     background-repeat: no-repeat;
    }

    p{
     font-size:22pt;
     color: black;
     text-align: center;
    }

    h1{
     font-size:35pt;
     font-weight:bold;
     text-align:center;
    }

    h2{
     font-size: 35pt;
     font-weight: bold;
     color: black;
    }
	
    footer{
	 width:cover;
	 background-color: black;
	 font-size: 20pt;
	 text-align: center;
	}
	footer a:hover{
		background-color:black;
		color:White;
	}



