body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}
table {
  width: 100%;
  font-size: 0.75em;
  color: inherit;
}
.fill-half {
  position: relative;
  height: 100%;
  width: 50%;
  margin: 0;
  padding: 0;
}
.vh-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.bottom-center {
  position: absolute;
  bottom: 1em;
  width: 100%;
  text-align: center;
}
.container {
  margin: 3% 10%;
}
.section {
  margin-top: 1.5em;
}
.scrollable {
  overflow: scroll;
}
p {
  line-height: 150%;
  font-size: 0.9em;
}
a {
  color: inherit;
  font-style: italic;
  text-decoration: none;
}
a:hover {
  text-decoration: line-through;
}
.h1 {
  margin: 0.6em 0;
  font-size: 3em;
}
.h2 {
  margin: 0.5em 0;
  font-size: 1.25em;
  color: #2C5364;
}
.fake-button {
  background: transparent;
  color: inherit;
  border-color: inherit;
  border-style: solid;
  border-radius: 5px;
  border-width: 1px;
  padding: 10px 25px;
}
.date-block {
  width: 100px;
}
#left-container {
  float: left;
  background: #203A43;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #203A43, #2C5364);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #203A43, #2C5364);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #ffffff;
}
#right-container {
  float: right;
  background: #ffffff;
  color: #203A43;
  /* fallback for old browsers */
}
@media (max-width: 960px) {
  .fill-half {
    width: 100%;
  }
  .bottom-center {
    position: absolute;
    bottom: 0.25em;
    width: 100%;
    text-align: center;
  }
  .scrollable {
    overflow: visible;
  }
  #left-container {
    height: 300px;
  }
  #left-container p {
    line-height: 100%;
  }
  #left-container .h1 {
    margin: 0.1em 0;
  }
}
