::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  justify-content: space-between;
  font-family: 'Arial';
  color: white;
  background: black;
}

a, a:visited {
  color: white;
}

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

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

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

img, video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

#o {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
