.panel-container {
  display: flex;
  flex-direction: row;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  /* avoid browser level touch actions */
  xtouch-action: none;
}

.splitter {
  flex: 0 0 auto;
  width: 10px;
  background: url(https://raw.githubusercontent.com/RickStrahl/jquery-resizable/master/assets/vsizegrip.png) center center no-repeat grey;
  min-height: 100%;
  cursor: col-resize;
  z-index: 1;
}

.panel-left {
  flex: 0 0 auto;
  /* only manually resize */
  width: 50%;
  height: 100%;
  min-width: 25%;
  max-width: 75%;
  left: 0;
}

.panel-right {
  flex: 1 1 auto;
  /* resizable */
  width: 50%;
  height: 100%;
  min-width: 25%;
  max-width: 75%;
  right: 0;
}

img {
  max-width: 99%;
}

.split {
  overflow: scroll;
}

.text {
  float: center;
  position: absolute;
  z-index: 1;
  text-align: center
  padding-left: 5%;
  padding-right: 5%;
  font-family: Verdana;
 }
 
 .sticky {
  position: -webkit-sticky;
  position: sticky;
  padding-bottom: 90px;
  top: 90%;
  z-index: 2;
  width: 75%;
  height: 5%;
  transform: translate(15%, -50%);
  margin-top: -20%;

}

.pagelayout {
  text-align: center;
  overflow-x: scroll;
}

.titel {
  position: fixed;
  max-width: 300px;
  min-width: 100px;
  margin-top: 150px;
  font-size: 2.5em;
  font-family: Verdana;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-decoration: none;
}
