* {
  padding: 0px;
  margin: 0px;
}
p {
  padding: 10px;
}

body {
  text-align: left;
  background-image: url(old_paper.gif);
}

header {
  background-color: black;
  height: 150px;
  margin: 20px;
  border-color: white;
  border-style: solid;
  border-width: 3px;
  width: 96%;
  border-radius: 10px;
}
header h1 {
  color: white;
  font-size: 400%;
  text-align: center;
  line-height: 150px;
}
header img {
  float: left;
  padding: 5px;
}
nav {
  clear: both;
  text-align: center;
  margin: 20px;
  background-color: #000;
  border-radius: 5px;
  width: 96%;
  border: 3px solid white;
}
nav ul {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  display: inline-block;
}
/*Create a horizontal list with spacing*/
nav li {
  float: left;
  margin-right: 1px;
}
/*Style for menu links*/
nav li a {
  display: block;
  min-width: 120px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: -3px;
  color: #fff;
  text-decoration: none;
  font-size: 125%;
}
/*Hover state for top level links*/
nav li:hover a {
  background: #808080;
}
/*Style for dropdown links*/
nav li:hover ul a {
  background: #808080;
  color: #2f3036;
  height: 60px;
  line-height: 40px;
}
/*Hover state for dropdown links*/
nav li:hover ul a:hover {
  background: #000;
  color: #fff;
  border: 3px #fff solid;
  margin: 2px;
}
/*Hide dropdown links until they are needed*/
nav li ul {
  display: none;
}
/*Make dropdown links vertical*/
nav li ul li {
  display: block;
  float: none;
}
/*Prevent text wrapping*/
nav li ul li a {
  width: auto;
  min-width: 100px;
  padding: 0 20px;
  text-align: left;
}
/*Display the dropdown on hover*/
/* + selects all .hidden and .hidden:hover immediately after nav ul li a:hover */
nav ul li a:hover + .hidden,
.hidden:hover {
  display: block;
}
/*Prevent Dropdown from Pushing Down the Web Page When Open*/
nav ul ul.hidden {
  position: absolute;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  background: #000;
  text-align: center;
  padding: 10px 0;
  display: none;
  height: 45px;
  font-size: 30px;
}
/*Hide checkbox*/
input[type="checkbox"] {
  display: none;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
article {
  width: 46%;
  height: 700px;
  background-color: #000000;
  margin: 1.4%;
  border: 2px solid #fff;
  float: left;
  border-radius: 5px;
}
article ul {
  padding: 10px;
  margin-left: 20px;
  font-size: 100%;
  color: #fff;
}

article h3 {
  padding: 0px 10px 0px 5px;
  font-size: 150%;
  color: #fff;
}
.photo {
  padding: 5px 5px 0px 5px;
}

footer {
  clear: both;
  background-color: black;
  color: white;
  text-align: center;
  border-color: white;
  border-style: solid;
  border-width: 3px;
  border-radius: 5px;
  margin: 3% 2%;
  font-size: 150%;
}

@media screen and (max-width: 1049px) {
  header {
    width: 92%;
    margin: 4%;
  }
  header img {
    display: none;
  }
  header h1 {
    font-size: 300%;
  }

  /*Show menu when invisible checkbox is checked
	http://jsfiddle.net/Kqscu/4/*/
  input[type="checkbox"]:checked ~ #menu {
    display: block;
  }
  nav {
    width: 92%;
    margin: 4%;
  }
  /*Make dropdown links appear inline*/
  nav ul {
    position: static;
    display: none;
  }
  /*Create vertical spacing*/
  nav li {
    margin-bottom: 1px;
    background: #3f5047;
  }
  nav li a {
    text-align: center;
  }
  /*Make all menu links full width*/
  nav ul li,
  li a {
    width: 100%;
    text-align: center;
  }
  /*Display 'show menu' link*/
  .show-menu {
    display: block;
  }
  .headline {
    margin-bottom: 5px;
    line-height: 28px;
  }

  footer {
    width: 92%;
    margin: 4%;
  }
}

@media screen and (max-width: 600px) {
  #header {
    width: 92%;
    margin: 4%;
  }

  header h1 {
    font-size: 40px;
    float: none;
  }
  nav {
    width: 92%;
    margin: 4%;
  }
  article {
    width: 92%;
    margin: 4%;
    float: none;
  }
}
