body
{
    margin:0px;
    padding: 0px;
}

header
{
    background-color: #49aadd;
    text-align: center;
    height: auto;
}

header img
{
    vertical-align: middle;
}

#img-banner
{
    position: relative;
}

#logo
{
    position: absolute;
    top: 100px;
    left: 50px;
    z-index: 2;
}

#captain
{
    position: absolute;
    bottom: 0px;
    right: 50px;
    z-index: 1;
}

/* Style the navbar */
nav 
{
    overflow: hidden;
    background-color: #333;
}
  
  /* Navbar links */
nav a 
{
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

nav a:hover 
{
    background-color: #ddd;
    color: black;
}
  
nav a.active 
{
    background-color: #04AA6D;
    color: white;
}
  
/* Page content */
.content 
{
    padding: 16px;
}
  
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky 
{
    position: fixed;
    top: 0;
    width: 100%;
}
  
/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content 
{
    padding-top: 60px;
}
  