body {
  background-color: #333;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", "Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", "Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", "Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif;
  padding: 18vh 1rem;
  text-align: center; }

a {
  color: rgba(0, 0, 0, 0.7); }
  a:focus, a:hover {
    color: rgba(0, 0, 0, 0.6); }

.middleman-logo {
  margin-bottom: 1rem;
  width: 10rem; }

.pdf {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0; }

.pdf,
html,
body {
  height: 100%;
  padding: 0; }

.button {
  display: inline-block;
  outline: 0;
  cursor: pointer;
  border: none;
  padding: 0 1rem;
  height: 45px;
  line-height: 45px;
  border-radius: 7px;
  font-weight: 400;
  font-size: 16px;
  background: #fff;
  color: #696969;
  -webkit-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.23);
          box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.23);
  -webkit-transition: background 0.2s ease,color 0.2s ease,-webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease,color 0.2s ease,-webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease,color 0.2s ease,box-shadow 0.2s ease;
  transition: background 0.2s ease,color 0.2s ease,box-shadow 0.2s ease,-webkit-box-shadow 0.2s ease; }
  .button :hover {
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 6px 20px rgba(93, 93, 93, 0.23);
            box-shadow: 0 6px 20px rgba(93, 93, 93, 0.23); }

.button-blue {
  display: inline-block;
  outline: 0;
  cursor: pointer;
  border: none;
  padding: 0 0.1rem;
  height: 45px;
  line-height: 45px;
  border-radius: 7px;
  background-color: #0070f3;
  color: white;
  font-weight: 400;
  font-size: 16px;
  -webkit-box-shadow: 0 4px 14px 0 #007663;
          box-shadow: 0 4px 14px 0 #007663;
  -webkit-transition: background 0.2s ease,color 0.2s ease,-webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease,color 0.2s ease,-webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease,color 0.2s ease,box-shadow 0.2s ease;
  transition: background 0.2s ease,color 0.2s ease,box-shadow 0.2s ease,-webkit-box-shadow 0.2s ease; }
  .button-blue :hover {
    background: rgba(0, 118, 255, 0.9);
    -webkit-box-shadow: 0 6px 20px #00763a;
            box-shadow: 0 6px 20px #00763a; }

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 10vh;
  display: flex;
  /* 1 */
  flex-direction: row;
  justify-content: end;
  /* 2 */
  padding: 0rem;
  /* 3 */
  background: rgba(255, 255, 255, 0.3);
  /* 4 */
  backdrop-filter: blur(8px); }

nav ul {
  display: flex;
  /* 5 */
  flex-direction: column;
  list-style: none;
  /* 6 */
  padding: 0 2rem; }

nav li h1.mini-title {
  font-size: 1.2rem; }

nav li h3.mini-title {
  font-size: 1rem; }
