* {
  margin: 0;
  padding: 0;
}

html {
  overflow: hidden;
}

.comic-bubble {
  position: absolute;
  background: #f9f9f9;
  border-radius: 0.4em;
  padding: 1em;
  margin: 2em;
}

.comic-bubble::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 150px;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #f9f9f9;
  border-bottom: 0;
  border-right: 0;
  margin-left: -10px;
  margin-bottom: -20px;
}

.comic-bubble p {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: Arial, sans-serif;
}

#canvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  /* background-image: url("../img/background.JPG"); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}/*# sourceMappingURL=style.css.map */