@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100..800&display=swap');

body {
  font-family: "JetBrains Mono", monospace;
  background-color: #24292D;
  color: #fff;
}

.title {
  font-weight: 700;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all .3s ease-in-out;
}

.preloader.hide {
  opacity: 0;
}

.preloader .preloader-content {
  font-weight: 700;
  font-size: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader .preloader-content svg {
  width: 100px;
  height: auto;
}

.logo {
  margin: 15px 0px;
  font-size: 20px;
  cursor: default;
}

.logo svg {
  width: 50px;
  height: auto;
  max-width: 0px 15px 0px 0px;
}

.tg-link {
  display: block;
  text-align: center;
  padding: 5px 20px;
  border: 2px #34c16c solid;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: all .3s ease-in-out;
}
.tg-link:hover {
  background-color: #34c16c;
  color: #000 !important;
}

.tg-link img {
  width: 35px;
  height: auto;
}

.block {
  color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  margin: 0px 0px 30px 0px;
  background-color: #2f363e;
  position: relative;
}

.block:first-child {
  margin: 30px 0px;
}

.block .block-title {
  font-weight: 700;
  font-size: 28px;
  margin: 0px 0px 15px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.block .block-description {
  margin: 15px 0px 0px 0px;
}

.block .block-code pre code {
  border-radius: 8px;
}

.copy-btn {
  background-color: transparent;
  border: 2px #34c16c solid;
  padding: 5px 10px;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  transition: all .3s ease-in-out;
}
.copy-btn:hover {
  background-color: #34c16c;
  color: #000;
}

.tabs-item {
  background-color: transparent;
  border: 2px #34c16c solid;
  padding: 5px 10px;
  color: #fff;
  font-weight: 300;
  transition: all .3s ease-in-out;
  margin: 15px 15px 0px 0px;
}

.tabs-item.tabs-item-active, .tabs-item:hover {
  background-color: #34c16c;
  color: #000;
}

pre {
  white-space: break-spaces !important;
}

@media screen and (max-width: 991px) {
  .block .block-title {
    flex-direction: column;
  }
}