/* webmeji */

body {
  background-color: black;
}

.webmeji-container {
  position: fixed;
  bottom: 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
  z-index: 9999;
  cursor: grab;
}

.webmeji-container img {
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  display: block;
  transform-origin: center;
}

webmeji-container:hover {
  cursor: -webkit-grab; cursor: grab;
}

@media (max-width: 768px) {
  .webmeji-container {
    width: 50px;
    height: 50px;
  }
}

