/*
Assignment Name: Project Update 4 Phase 1 
File Name: styles.css
Date: 05/13/18 
Programmer: Liana Schweitzer
*/

body {
    background-color: #609eb7;
    font-family: Verdana, Arial, sans-serif;
}

footer {
    background-color: gray;
    background-image: url(Logo.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    border: 10px solid gray;
    color: #ffffff;
    padding: 20px;
    text-align: center;    
}

footer a {
    color: lightblue;
}

header {
    align-items: center;
    background-image: url(Portland%20Historical%20Tours.jpg);
    background-repeat: no-repeat;  	
    background-size: cover;     
    display: flex;
    height: 240px;
    justify-content: center;      
}

h1 {
    color: #ffffff;
    font-family: Palatino, sans-serif;
    font-size: 60px;
    text-shadow: 2px 0 2px #000000;
}

h2 {
    padding-top: 40px;
}

main {
    background-color: #ffffff;
    display: block;
    padding: 40px;
}

nav {
    background-color: #05314c;
    font-weight: bold;
    letter-spacing: 0.1em; 
    text-align: center;
}

nav li {
    display: inline-block;
}

nav ul { 
    list-style-type: none; 
    margin: 0; 
	padding: 0; 
}

.dd {
    background-color: inherit; 
    float: left;   
    font-weight: bold;
    list-style: none;
    width: 100%;
}

.dd a {
    color: #fff;
    display: block;
    padding: 20px; 
    text-decoration: none;
}

.dd li {
    padding: 0 10px;
    position: relative;
}

.dd li .current {
   background-color: lightblue; 
}

.dd ul {    
    left: -9999px;
    position: absolute;
}

.dd ul li {
    float: none;
    padding-top: 1px;
}

.dd li:hover a {
    background-color: gray;
}

.dd li:hover ul {
    left: 0;
}

.dd li:hover ul li a:hover {
    background-color: lightblue;
}

#tours {
    width: 160px;
}

#wrapper {
    box-shadow: 2px 2px 2px #303030;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    min-width: 700px;
    width: 60%;
}		