@import 'my_root.css';
body {
  min-height: 100vh;
}
html,
body {
  padding: 0px;
  margin: 0px;
  font-family: var(--my-font-family);
}
body {
  display: flex;
  flex-direction: column;
  background-color: var(--my-body-bgcolor);
}
body img {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}
body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
body:before {
  background: var(--my-body-before-bgcolor);
  content: '';
  height: 540px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
* {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
a,
img {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}
