html,
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-family: 'Mulish';
  background: #131417;
  color:  #eee;
  overflow: hidden;
  height: 100vh;
}

code {
  font-family: var(--monospace);
}

h1 {
  font-weight: 900;
}

header{
  height: 56px;
  padding: 8px;
  border-bottom: 1px solid var(--rs-gray-300);
}

footer {
  position: fixed;
  font-size: 8px;
  text-align: center;
  width: 100%;
  bottom: 2px;
  pointer-events: none;
  opacity: .3;
  z-index: 9999;
}

a {
  text-decoration: none;
  color: unset;
}

textarea {
  font-family: var(--sans-serif);
  min-height: 36px;
}

:root{
  --border-radius: 12px;
  --gap: 12px;

  --bg-overlay: rgba(170, 175, 202, 0.12);
  --shadow-color: rgba(0, 0, 0, 0.04);

  .rs-card {
    --rs-card-padding: var(--gap);
  }

  

  --monospace: 'Jetbrains Mono', 'Liberation Mono', Monaco, Consolas, monospace;
  --sans-serif: 'Mulish', 'Lucida Grande', 'Avenir Next', 'Helvetica Neue',
  Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei',
  STXihei, sans-serif;
}

