html, body {
  height: 100%;
}

/* background */
body {
  background: black;
  text-align: center;
}

/* header */
h1 {
  font-family: 'PT Sans', sans-serif;
  font-size: 4em;
  color: #fff;
}

/* buttons */
button {
  cursor: pointer;
  margin: 0 5px;
  padding: 10px 30px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: 0;
  color: #fff;
  transition: all ease 300ms;
}
button:hover {
  color: #333;
  background: #fff;
}

/* center content vertically and horizontally */
.table {
  display: table;
  width: 100%;
  height: 100%;
}
.cell {
  vertical-align: middle;
  cursor: default;
}

/* variable misc classes */
.hide {
  display: none;
}


.article {
  color:white;
  text-align:left;
  padding: 5% 10% 1%;
}


a { color: yellow;}