 /* Split the screen */
.split {
  height: 100%;
  width: 20%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: scroll;
  left: 0;
  background-color: goldenrod;
}

.split2 {
  height: 100%;
  width: 80%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: scroll;
  right: 0;
  background-color: peru;
}

/* Control the left side */
.left {
  left: 0;
  background-color: goldenrod;
}

/* Control the right side */
.right {
  right: 0;
  background-color: peru;
}

/* If you want the content centered horizontally and vertically */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Style the image inside the centered container, if needed */
.centered img {
  width: 150px;
  border-radius: 50%;
} 