@font-face {
  font-family: "Menlo Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Menlo Regular"), url("Menlo-Regular.woff") format("woff");
}

html,
body {
  padding: 0;
  margin: 0;
  background: #2a151e;
  user-select: none;
}

.dim {
  opacity: 0.5;
}

.error {
  color: yellow;
}

#terminal {
  margin: 10px;
  font-family: "Menlo Regular";
  color: rgba(255, 255, 255, 0.899);
  overflow-wrap: break-word;
}

#output {
  white-space: pre-wrap;
}

.prompt {
  color: #9082e7;
}

#input {
  display: inline-block;
  white-space: pre-wrap;
  transition: all 0.3s ease-in-out;
}

#cursor {
  display: inline-block;
  background-color: white;
  border-radius: 2px;
  animation: blink 1.5s infinite;
  transition: all 0.3s ease-in-out;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }
}

.simple-keyboard-placeholder {
  height: 500px;
}

.simple-keyboard {
  position: fixed;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}

.hg-theme-default .hg-button {
  height: 55px;
  font-size: 26px;
  color: #432d3d;
}

.hg-theme-default .hg-button-space {
  flex-grow: 5;
}

.hg-theme-default .hg-functionBtn {
  font-size: 18px;
}

.slide-left {
  transform: translate(-19px, 0);
}

.slide-down {
  transform: translate(0, 320px);
}

.beat {
  display: inline-block;
  animation: beat 1s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes beat {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  20% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.fade-in {
  display: inline-block;
  animation: fade-in 6s ease-in;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }
}

.token-nil {
  color: rgb(181, 102, 255);
}
.token-sym {
  color: rgb(109, 166, 240);
}
.token-float {
  color: rgb(241, 139, 101);
}
.token-paren {
  color: white;
}
.token-comment {
  color: rgb(172, 172, 172);
}