/*  GLOBAL SETTINGS
===================================================================*/

html { background: #B19056;	outline: none; }

* {margin: 0; padding: 0;} /* slideshow shifts without this  */

.container {
        max-width: 980px;
	overflow: hidden;
	margin: 0 auto;

        background: #444;
}

/*  NAVIGATION
===================================================================*/

.nav ul {
  list-style: none;
  background-color: #444;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav li {          
  font-size: 1.2em;          /* same font size as @media and <p>  */
  line-height: 30px;         /* changed line-ht and ht from 40px  */
  height: 30px;
  border-bottom: none;   /* was 1px solid #888;  */
}
 
.nav a {
  text-decoration: none;
  color: #fff;
  display: block;
  transition: .3s background-color;
  padding: 0 18px;
}
 
.nav a:hover {
  background-color: #222;   /* changed from teal #005f5f; */
}
 
.nav a.active {
  background-color: #fff;
  color: #444;
  cursor: default;
}
 
@media screen and (min-width: 600px) {
  .nav li {
    float: left
    border-bottom: none;
    height: 40px;               /* changed line-ht and ht from 50px  */
    line-height: 40px;
    font-size: 1.2em;
  } /* removed fixed space each button takes, was width: 120px;  */
/* removed above border-bottom: 1px solid #888;  but maybe use for small screen? */
 
  /* Option 1 - Display Inline */
  .nav li {
    display: inline-block;
    margin-right: -4px;
  }
 
  /* Options 2 - Float
  .nav li {
    float: left;
  }
  .nav ul {
    overflow: auto;
    width: 600px;
    margin: 0 auto;
  }
  .nav {
    background-color: #444;
  }
  */
}


/*  FONTS  
===================================================================*/

body {
  font-family: Lato, sans-serif;
}
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.bold {
  font-weight: 700;
}
.black {
  font-weight: 900;
}

h1.name {
	font: 2.5em Lato, sans-serif;
        font-weight: 300;
	color: #222; 
	text-align: center;
	margin: 10px 0;
}

h1 {
	font: 1.5em Lato, sans-serif;
        font-weight: 300;
	color: #222; 
	text-align: left;
	margin: 10px 0;
}

p {
	font: 1.1em Lato, san-serif;
	color: #fff;
        font-weight: 400;
	padding: 10px 0pt;
	}

a {
	font: Lato, sans-serif;
        color: #fff; 
	text-decoration: none; 	
	}

a:hover { color: #b7a17c; }  /* deep pink, a is .9em in slideshow css */ 



