/*
 * Global styles
 */

@import url('https://fonts.googleapis.com/css?family=Basic');
@import url('https://fontlibrary.org/face/hk-grotesk');

html, body {
	font-family: 'HKGroteskRegular', sans-serif;
	font-weight: normal;
}

h1.title,h1,h2,h3,h4,h5,h6 {
	font-family: 'Basic', sans-serif;
	text-shadow: 1px 2px 2px #b0b0b0;
}

/*
 * Top header
 */

header nav {
    background: #66023c;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 10px 0 #777;
    -webkit-box-shadow: 0 1px 10px 0 #777;
    box-shadow: 0 1px 10px 0 #777;
    height: 3em;
    margin-bottom: 1em;
    padding: 0.5em;
}

header nav h3 { color: white; font-weight: 300; }

/*
 * Menu bar
 */

ul[role=menubar] > li {
    display: inline-block;
    padding: 0.5em;
}

ul[role=menubar] a { color: white; }

/*
 * Main section
 */

section#content {
    margin-bottom: 2em;
    padding: 1em;
}

.hero > .col > .inner {
    background: #ddd;
    border-radius: 1em;
    padding: 1em 2em;
}

section#content header .title {
    text-decoration: underline;
}

section#content > section, section#content > div {
    padding: 1em;
}

section#content footer {
    text-align: center;
}

/*
 * Very last footer
 */

body > footer {
    background: white;
    border-top: 1px solid #777777;
    -moz-box-shadow: 0 0px 10px 0 #777;
    -webkit-box-shadow: 0 0px 10px 0 #777;
    box-shadow: 0 0px 10px 0 #777;
    height: 3em;
    font-size: 11pt;
    line-height: 2em;
    margin: 0;
    padding: 0.5em 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

