* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: space-between;
  font-family: 'Arial';
  filter: invert(100);
  background: black;
}

a, a:visited {
  color: black;
}

p {
  color: black;
  font-family: 'Times New Roman', Times, serif;
  line-height: 1.4;
}

h2 {
  margin: 0;
  font-weight: normal;
}

aside {
  background: white;
  display: flex;
  flex-flow: column nowrap;
  height: 100vh;
}

img, video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  /* image-rendering: pixelated; */
}

.s {
  overflow-y: scroll;
  padding: 1em;
}

#c {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  cursor: grab;
  filter: grayscale(0);
}

#c:active {
  cursor: grabbing;
}
