body {
  font-family: 'Ubuntu';

  display: -ms-flexbox;
  display: flex;
      flex-direction: column;

  color: white;
  background: url(background.jpg) no-repeat center center fixed;
  background-position: center;
  background-size: cover;

  height: 100%;
  margin: 0;
  overflow: hidden;

  -ms-flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
}

footer p:last-child {
	font-size:10px;
}

.links {
  position: absolute;
  top: 25px;
  right: 25px;

  display: -ms-flexbox;
  display: flex;
      flex-direction: column;

  margin: 0;
  padding: 0;

  list-style: none;

  -ms-flex-direction: column;
}

iframe {
  width: 100%;
  height: 100%;
}

h1 {
  font-size: 3.75rem;
  font-weight: bold;

  margin: 25px 0 20px;

  text-align: center;
}

.tagline {
  font-size: 1.25rem;
  margin: 5px 0 10px;
}

p {
  text-align: center;
}

a:link {
  text-decoration: none;

  color: #fff;
}

a:visited {
  text-decoration: none;

  color: #fff;
}

a:hover {
  text-decoration: underline;

  color: #fff;
}

a:active {
  text-decoration: underline;

  color: #fff;
}

.pdf-container {
  position: relative;

  display: -ms-flexbox;
  display: flex;
      flex-direction: row;

  width: 80vw;
  height: 70vh;

  -ms-flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pdf-container > div {
  position: absolute;
  top: 0;
  left: 0;

  visibility: hidden;

  width: 100%;
  height: 100%;

  transition: all .5s;

  opacity: 0;

  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pdf-container .js-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;

  width: 50px;
  height: 50px;
  margin: auto;
}

.pdf-container .js-next {
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;

  width: 50px;
  height: 50px;
  margin: auto;
}

.btn {
  font-size: 3rem;

  color: white;
  border: none;
  background: transparent;

  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.btn:focus {
  outline: 0;
}

.btn:disabled {
  opacity: .5;
}

.pdf-container > div.is-active {
  visibility: visible;

  opacity: 1;
}

.fromRight {
  transform: translateX(250px);
  animation-name: slideinFromRight;
  animation-duration: .5s;

  animation-fill-mode: forwards;
}

.fromLeft {
  transform: translateX(-250px);
  animation-name: slideinFromLeft;
  animation-duration: .5s;

  animation-fill-mode: forwards;
}

.toLeft {
  // apply animation to Left
  transform: translateX(0);
  animation-name: slideoutToLeft;
  animation-duration: .5s;

  animation-fill-mode: forwards;
}

.toRight {
  // apply animation to right
  transform: translateX(0);
  animation-name: slideoutToRight;
  animation-duration: .5s;

  animation-fill-mode: forwards;
}

@keyframes slideinFromRight {
  0% {
    transform: translateX(250px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideinFromLeft {
  0% {
    transform: translateX(-250px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideoutToLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-250px);
  }
}

@keyframes slideoutToRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(250px);
  }
}
