/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}


/*User Code*/
html{width: 100%; font-family: 'Lato', 'sans-serif';}
body{width: 100%; background: green;}

div#wrapper
{width: 100%;}

/*====================*/
/* ====  Header ===== */
/*====================*/
header
{display: block; width: 100%; background: white; height: 100px; text-align: center;}

header nav
{float: right; display: inline-block; margin-top: 30px; margin-right: 10%;}

header nav ul li {padding: 10px; display: inline-block;}
header nav ul li a {text-decoration: none; color: black; padding: 5px; font-weight: bold;}

header nav ul li a:hover{color: red;}
.fixed {
position: fixed;
width: 100%;
}

/*====================*/
/* ====  Banner ===== */
/*====================*/
section#banner
{width: 100%; height:500px; background: url(../images/panorama.jpg) no-repeat center center fixed; background-size: cover;}

section#banner>div#textbox{height: 400px; width: 60%; text-align: center; margin: 0 auto;}
section#banner>div#textbox p{color: white; font-size: 100px; font-weight: 800; margin-bottom: 20px;}

/*====================*/
/* ====  Content ==== */
/*====================*/
section#content{background: white; width: 100%; padding-top: 50px;}

section#content article{width: 70%; margin: 0 auto;}
section#content article h1{font-size: 50px; font-weight: 800; margin-bottom: 20px;}
section#content article p{line-height: 22px;}