/*
    CSS Reset
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-size: 100%;
  }
  
  ol,
  ul {
    list-style: none;
  }
  
  img,
  video {
    width: 100%;
  }
  
  a {
    color: black;
    text-decoration: none;
  }

  button {
    border-radius: 0;
  }

/*
    Styles
*/

h2,
figure {
  filter: drop-shadow(0px 0px 2px black);

}

body {
  font-family: monospace;
  overflow-y: hidden;

}

div {
  float: left;
  width: 33.33%;
  background-color: black;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  height: 3000px;
  cursor: ns-resize;
  
}

h2 {
  position: absolute;
  color: white;
  z-index: 2;
  font-size: 1em;
  line-height: 1.2em;
  margin: 0.5em;

}

ol {
  position: static;
  list-style: decimal;
  color: white;
  border-width: 10px;
  min-width: 200px;
  font-size: 1.3em;
  line-height: 1.6em;

}

figure {
  background-color: black;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  align-content: center;
  padding: 30%;
  padding-top: 23%;

}

a {
  line-height: 4em;
  font-size: 1.3em;
  pointer-events: all;
  color: white;
  text-decoration: underline;

}

img {
  margin-bottom: 150px;
  margin-top: 150px;

}

p {
  position: absolute;
  top: 2300px;

}
