
canvas {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/* p{
  display: none;
} */

div.allowscroll { 
/*   assign scrolling text to this without messing with p5 canvas */
  overflow-y: scroll;
  height: 80vh;
}
div.allowstatic {
/* p5 canvas is assigned to this one    */
  overflow-y: hidden;
}

body {
  font-family: "Inter", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
   *, html, body, .row {
      margin-left:3 !important;
      margin-right:3 !important;
      padding-left:0 !important;
      padding-right:0 !important;
   }
}