* { margin: 0; padding: 0; border: 0; }

*, *:before, *:after {
    @include box-sizing(border-box);
}

img { box-sizing: content-box; }

html, body {
  height: 100%;
  font-family: "Arial", sans-serif;
  font-weight: 400;       
  font-size: 15px;
  line-height: 1.6em;
  color: black;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-align: left;
}

/* type */

h1 {
  font-size: 2.6em;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 48px;
}

h2 {
  margin-top: 24px;
  line-height: 30px;
}

h2, p, ul {
  margin-bottom: 12px;
  font-weight: normal;
}

h3 {
  font-size: 1em;
}

p, ul, ol {
  color: #333;
}

ul li {
  margin-left: 18px;
}

/* links */

a,
p a {
  font-style: italic;
  font-weight: bold;
  -webkit-transition: all 200ms ease;
     -moz-transition: all 200ms ease;
       -o-transition: all 200ms ease;
          transition: all 200ms ease;
}

p a {
  color: #72777a;
}

a:hover,
a:focus,
a:active,
a.active,
p a:hover,
p a:focus,
p a:active {
  color: black;
}

a.button {
  background: black;
  display: inline-block;
  color: white;
  padding: 5px 30px;
  
}

a.button:hover,
a.button:focus,
a.button:active {
  background: #b9c0c5;
  color: black;
}

.container {
  padding: 24px 15px;
  max-width: 960px;
  margin: auto;
}

header {
  text-align: right;
  border-top: 3px solid black;
  width: 100%;
}

#logo {
  display: block;
  width: 60%;
  margin-left: 40%;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

footer {
  background: #949a9d;
  width: 100%;
  text-align: right;
}

footer .container {
  padding: 5px 15px;
}

nav ul {
  margin: 0 -15px;
  display: block;
}

nav ul li {
  display: inline-block;
  list-style: none;
  padding: 0 15px;
}

nav ul li a {
  color: white;
}


/* sticky footer */

#wrapper {
	min-height: 100%;
	margin-bottom: -34px;
}

#wrapper:after {
	content: "";
	display: block;
}

footer, #wrapper:after {
	height: 34px; 
}

/*** media ***/

@media screen and (max-width: 480px) {
  #logo {
    width: 100%;
    margin-left: 0;
  }
  
  nav ul li {
    display: block;
  }
  
  #wrapper {
  	margin-bottom: -60px;
  }
  
  footer, #wrapper:after {
	  height: 60px; 
  }
  
  img {
    width: 100% !important;
    max-width: 100% !important;
  }
}