html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
}

.main-title {
  font-family: sans-serif;
  font-size: 42px;
  margin-bottom: 42px;
  text-align: center;
}

.h1,
.h2 {
  text-align: center;
  margin-top: 24px;
  font-size: 32px;
}

body {
  background: #fff;
}

.showBanner {
  overflow: hidden;
  max-width: 200px;
  height: 100px;
  width: 100%;
  margin: 16px auto 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgb(30 13 38 / 10%), 0 5px 10px rgb(30 13 38 / 10%);
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 10px;
}

.main-container {
  display: flex;
  justify-content: space-between;
  grid-gap: 24px;
  flex-wrap: wrap;
}

#canvas {
  width: 100%;
  height: 100%;
}

.bannerDesc {
  text-align: center;
  margin-top: 42px;
  font-size: 24px;
  color: green;
}

.resultFF {
  text-align: center;
  margin-top: 8px;
  font-size: 24px;
  color: green;
}

.link {
  display: inline-block;
  font-size: 32px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  line-height: 1;
  color: #fff;
  transition: opacity .25s ease-in-out;
}

.link:hover {
  opacity: .8;
}

.preloader {
  opacity: 0;
  transition: opacity .3s ease-in-out;
}

.main {
  font-family: sans-serif;
  position: relative;
  z-index: 1;
  flex: 0 0 560px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(30,13,38,.1), 0 5px 10px rgba(30,13,38,.1);
}

.debag {
  font-family: monospace;
  font-size: 16px;
  color: #fff;
  position: relative;
  display: block;
  z-index: 2;
  flex: 0 0 560px;
  max-width: 560px;
  padding: 48px 16px 16px 16px;
  text-align: left;
  background-color: #1e0d26;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(30,13,38,.1), 0 5px 10px rgba(30,13,38,.1);
}

.debag__setting {
  max-height: 200px;
  overflow: auto;
}

.debag__setting::-webkit-scrollbar,
.info-list::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
.debag__setting::-webkit-scrollbar-track,
.info-list::-webkit-scrollbar-track {
  background: #342a39;
}
.debag__setting::-webkit-scrollbar-thumb,
.info-list::-webkit-scrollbar-thumb {
  background-color: #717171; 
  border-radius: 20px;
  border: none;
}

.user__container {
  font-family: monospace;
  font-size: 16px;
  color: #fff;
  white-space: pre;
  display: flex;
  justify-content: space-between;
  grid-gap: 40px;
  padding-top: 40px;
  position: relative;
}

.user {
  padding: 16px;
  position: relative;
  text-align: left;
  background-color: #1e0d26;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(30,13,38,.1), 0 5px 10px rgba(30,13,38,.1);
  margin-top: 24px;
}

.debag__list,
.debag__setting {
  padding: 0;
  margin: 0;
  list-style: none;
}

.debag__setting > div:not(:first-child) {
  margin-top: 12px;
  display: flex;
  align-items: center;
}

.debag__setting div:last-child {
  margin-bottom: 12px;
}

.debag__title {
  position: absolute;
  top: 0;
  left: 0;
  color: #827986;
  text-align: center;
  background-color: #342a39;
  border-radius: 10px 10px 0 0;
  width: 100%;
  line-height: 2;
}

.debag__title--user span {
  position: relative;
  display: flex;
  /* margin-left: auto; */
  padding-left: 24px;
  z-index: 1;
}

.debag__title--ff span {
  position: relative;
  display: flex;
  justify-content: center;
  padding-left: 250px;
  z-index: 1;
}

.debag__inner-title {
  position: relative;
  color: #827986;
  text-align: center;
  line-height: 2;
  margin-top: 24px !important;
}

.debag__inner-title::after {
  content: "";
  background-color: #342a39;
  border-radius: 10px 10px 0 0;
  position: absolute;
  height: 100%;
  top: 0;
  left: -16px;
  right: -16px;
  z-index: -1;
}

.debag__results h3,
.debag__results div,
.debag__list {
  margin-top: 12px;
}

.debag__setting * span {
  border: 1px solid transparent;
  border-bottom: 1px solid #fff;
  padding: 2px 4px;
  min-width: 10px;
  min-height: 10px;
  outline: none;
  transition: border-color .2s ease-in-out, border-radius .16s ease-in-out;
}

.debag__setting * span:hover {
  border-color: #fff;
  border-radius: 4px;
  outline: none;
}


[contenteditable="true"]:active,
[contenteditable="true"]:focus {
  border-color: #fff;
  border-radius: 4px;
  outline: none;
}

.chat {
  position: absolute;
  bottom: -100px;
  right: 16px;
  transition: bottom .3s ease-in-out, opacity .16s ease-in-out;
}

.info-list {
  max-width: 560px;
  width: 100%;
  overflow-x: auto;
}

.info-list::after {
  /* content: '';
  position: absolute;
  right: -16px;
  z-index: 1;
  top: 0;
  width: 2px;
  height: 100%;
  background: #fff; */
}

.hljs {
  background: transparent !important;
}

.hljs-attr {
  color: #0ac2a3 !important;
}

.hljs-punctuation, .hljs-tag {
  color: #fff !important;
}

.hljs-string,
.hljs-number,
.hljs-bool {
  color: #f7d56e !important;
}
