/* Pen-specific styles */
* {
  box-sizing: border-box;
}
html, body, section {
  height: 100%;
}

body {
  color: #fff;
  font-family: sans-serif;
  font-size: 1.25rem;
  line-height: 150%;
  text-align: center;
  text-shadow: 0 2px 2px #b6701e;
}

section {
  width: 100%;
}

article {
  position: relative;
  top: 70%;
  left: 50%;
  padding: 1rem;
  text-align: center;
  transform: translate(-50%, -50%);
}

h1 {
  font-size: 1.75rem;
  margin: 0 0 0.75rem 0;
}

.header-text {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50px;
    font-size: 2.5em;
    line-height: 1em;
}

/* Pattern styles */
.left-half {
  background-color: #ff9e2c;
  background-image: url(background-example-pb.jpg);
  background-size: cover;
  background-position: center bottom;
  float: left;
  width: 50%;
  height: 100%;
}
.right-half {
  background-color: #b6701e;
  background-image: url(background-example-2.jpg);
  background-size: cover;
  background-position: right bottom;
  float: left;
  width: 50%;
  height: 100%;
}
