body {
  font-family: Arial, Helvetica, sans-serif;
  background: hsl(220, 13%, 19%);
  color: hsl(219, 13.5%, 71%);
}

/* loading fullscreen overlay to prevent user interaction */
.loading::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  z-index: 2;
  cursor: wait;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
}

.editor {
  font-family: "JetBrains Mono", monospace;
  font-weight: 300;
  font-size: 0.813rem;
  line-height: 1.5;
  height: 100vh;
  tab-size: 2;
}

.codejar-linenumbers {
  text-align: right;
  padding-right: 0.406rem;
  /* code below is from js */
  mix-blend-mode: normal !important;
  background: hsl(220, 13%, 19%) !important;
  color: hsl(219, 13.5%, 27%) !important;
}

/* button */
.create {
  position: fixed;
  bottom: 1.875rem;
  right: 1.875rem;
  height: 3.5rem;
  padding: 0 1.563rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(92.88deg, #455eb5 9.16%, #5643cc 43.89%, #673fd7 64.72%);
  text-shadow: rgba(0, 0, 0, 0.25) 0 0.188rem 0.5rem;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: all 0.5s;
}

.create:hover:not([disabled]) {
  box-shadow: rgba(80, 63, 205, 0.5) 0 0.063rem 1.875rem;
  transition-duration: 0.1s;
}

.create:active:not([disabled]) {
  box-shadow: rgba(80, 63, 205, 0.5) 0 0.063rem 1.25rem;
}

.create[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: rgba(80, 63, 205, 0.5) 0 0.063rem 1.25rem;
}

/* github badge */
.github {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 2.813rem;
  height: 2.813rem;
  padding: 0.406rem;
  background: hsl(220, 13%, 19%);
}
.github path {
  fill: hsl(219, 13.5%, 27%);
}
