/* General Styles */

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: "Helvetica";
}

h1, h2 {
  text-transform: uppercase;
}

h1 {
  font-size: 100px;
  margin: 0px;
  color: white;
  line-height: 100px;
}

h2 {
  font-size: 40px;
  text-align: center;
}

p {
  font-size: 22px;
  line-height: 2em;
}

/* Section Styles */

header {
  text-align: center;
  background: black;
  background-size: cover;
  padding: 100px 0px;
  margin-bottom: 5vh;
}

section {
  padding: 5px 25px;
  margin: auto;
  width: 100%;
  max-width: 980px;
}

footer {
  text-align: center;
  background: black;
  background-size: cover;
  padding: 100px 0px;
  margin-top: 5vh;
  color: white;
}

.sig {
  font-size: 18px;
}

.twitter {
  padding: 0px;
}

.twitter:hover {
  background: black;
  color: goldenrod;
}

/* Anchor Styles */

a {
  text-decoration: none;
  background: black;
  color: white;
  padding: 5px;
}

a:hover {
  background: goldenrod;
}