@import url(https://fonts.googleapis.com/css2?family=Roboto+Slab&family=Tilt+Neon&display=swap);
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(16, 16, 17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2666666667);
  box-shadow: 0 0 48px 24px rgba(0, 0, 0, 0.5333333333);
  padding: 20px max(150px, 16%);
  transition: 0.225s;
}
.topbar .topbar-left {
  display: flex;
  align-items: center;
}
.topbar .topbar-left .topbar-left__app-brand {
  width: 48px;
  margin: -12px;
  margin-right: 12px;
}
.topbar .topbar-left .topbar-left__app-title {
  font-size: 24px;
}
.topbar .topbar-center .button {
  margin: 0 3px;
}

.landing-content {
  width: 100%;
  min-height: calc(100vh - 75px);
  padding: 20px;
  padding-top: 180px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2666666667), rgba(0, 0, 0, 0));
}
.landing-content .landing-center {
  background: rgba(255, 255, 255, 0.0156862745);
  box-shadow: 0 0 48px 16px rgba(0, 0, 0, 0.5333333333), inset 0 0 48px 16px rgba(0, 0, 0, 0.5333333333);
  border: 2px dashed rgba(255, 255, 255, 0.0666666667);
  border-radius: 16px;
  padding: 50px 80px;
  text-align: center;
  transition: 0.225s;
}
.landing-content .landing-center:hover {
  background: rgba(255, 255, 255, 0.0235294118);
}
.landing-content .landing-center .landing-header {
  font-size: 4rem;
  color: transparent;
  background: linear-gradient(-45deg, rgb(243, 109, 225), #0077dd);
  background-clip: text;
  -webkit-background-clip: text;
}
.landing-content .landing-center .landing-subheader {
  margin-top: 24px;
  font-size: 32px;
}
.landing-content .landing-text {
  margin-top: 32px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6666666667);
  text-align: center;
}
.landing-content .landing-text .landing-list {
  margin-top: 16px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style-type: decimal-leading-zero;
}
.landing-content .landing-text .landing-list .landing-item {
  width: auto;
}
.landing-content .landing-buttons {
  margin: 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-content .landing-buttons * {
  margin: 0 12px;
}

.function-root {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 128px;
}
.function-root.reverse {
  flex-direction: row-reverse;
}
.function-root .function-left {
  padding: 0 16px;
  margin: 0 32px;
  width: 500px;
}
.function-root .function-left .function-title__box {
  padding: 8px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.0156862745);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5333333333);
  border-radius: 12px;
}
.function-root .function-left .function-title__box .function-title {
  font-size: 32px;
  letter-spacing: 0px;
  text-align: center;
  color: transparent;
  background: linear-gradient(-45deg, rgb(243, 109, 225), #0099ff);
  background-clip: text;
  -webkit-background-clip: text;
}
.function-root .function-left .function-description__box {
  text-align: justify;
  text-shadow: 1px 1px #000;
  color: #999;
  padding: 8px;
  font-size: 20px;
}
.function-root .function-left .function-buttons {
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.function-root .function-right {
  margin: 0 32px;
}
.function-root .function-right .function-thumbnail {
  width: 700px;
  height: 350px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.7333333333);
  transition: 0.225s background-size;
  border-radius: 0 0 12px 12px;
}
.function-root .function-right .function-thumbnail:hover {
  background-size: 255% !important;
}
.function-root .function-right .function-bar {
  width: 700px;
  padding: 12px;
  background: linear-gradient(-45deg, #0077dd, #0099ff, rgb(243, 109, 225));
  box-shadow: 0 8px 32px 24px rgba(0, 0, 0, 0.7333333333);
  border-radius: 12px 12px 0 0;
  transition: 0.5s;
}
.function-root .function-right .function-bar:hover {
  background: #0077dd;
  box-shadow: 0 8px 32px 24px rgba(0, 0, 0, 0.7333333333), inset 0 0px 16px rgba(0, 0, 0, 0.7333333333);
}

.functions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 32px;
  margin-bottom: 128px;
}
.functions .functions-center-warning {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  color: #bbb;
  max-width: 700px;
  margin: 32px 0;
}

.code-editor {
  width: 700px;
  height: 350px;
  background: rgba(24, 24, 27, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  border-radius: 12px;
}
.code-editor .code-editor__topbar {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2666666667);
}

.landing-plugins {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 192px;
}
.landing-plugins .plugins-header {
  font-size: 3rem;
  color: transparent;
  background: linear-gradient(-45deg, rgb(243, 109, 225), #0077dd);
  background-clip: text;
  -webkit-background-clip: text;
}
.landing-plugins .community-plugins {
  font-size: 1.5rem;
  color: #bbb;
  margin: 32px 0;
}

.footer-placeholder {
  height: 350px;
  z-index: 1;
  position: relative;
  display: none;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 350px;
  padding: 25px 200px;
  background: rgba(24, 24, 27, 0.8);
  box-shadow: inset 0 8px 8px rgba(0, 0, 0, 0.5333333333);
}
.footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.footer .footer-row .footer-col {
  width: 25%;
}
.footer .footer-row .footer-col .footer-header {
  font-size: 1.1rem;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.4666666667);
}
.footer .footer-row .footer-col .footer-list {
  list-style-type: none;
}
.footer .footer-row .footer-col .footer-list .footer-item .footer-link {
  font-size: 24px;
}
.footer .footer-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer .footer-top .footer-logo, .footer .footer-top .footer-logo img {
  width: 72px;
  height: 72px;
}
.footer .footer-top .footer-app-title {
  font-size: 24px;
}
.footer .footer-bottom {
  margin-top: 16px;
}

.documentation-main {
  padding: 50px 100px;
}
.documentation-main .documentation-header {
  text-align: center;
  font-size: 3rem;
}
.documentation-main .documentation-subheader {
  text-align: center;
  font-size: 2rem;
  margin-top: 16px;
  color: transparent;
  background: linear-gradient(-45deg, rgb(243, 109, 225), #0077dd);
  background-clip: text;
  -webkit-background-clip: text;
}
.documentation-main .documentation-general-categories {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 64px 0;
}
.documentation-main .documentation-general-categories .documentation-general-category {
  width: 180px;
  height: 60px;
  margin: 0 20px;
  line-height: 60px;
  text-align: center;
  transition: 0.225s;
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.0666666667);
  box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.5333333333);
  color: #ededed;
}
.documentation-main .documentation-general-categories .documentation-general-category:hover {
  background: rgba(255, 255, 255, 0.0666666667);
  color: #ccc;
}
.documentation-main .documentation-container {
  margin-top: 64px;
  min-height: 250px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.documentation-main .documentation-container .documentation-sidebar {
  width: 300px;
  height: 100%;
  padding: 20px;
  background: rgba(24, 24, 27, 0.8);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5333333333);
}
.documentation-main .documentation-container .documentation-sidebar .documentation-sidebar__header {
  font-size: 36px;
  margin-bottom: 16px;
}
.documentation-main .documentation-container .documentation-sidebar .documentation-sidebar__section .documentation-item__title {
  font-size: 20px;
  color: #aaa;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
}
.documentation-main .documentation-container .documentation-sidebar .documentation-sidebar__section .documentation-item__title:hover {
  color: #0099ff;
}
.documentation-main .documentation-container .documentation-article, .documentation-main .documentation-container .documentation-children {
  padding: 16px;
  padding-left: 64px;
  font-size: 24px;
}
.documentation-main .documentation-container .documentation-article h2, .documentation-main .documentation-container .documentation-children h2 {
  font-size: 32px;
  margin: 0px;
}
.documentation-main .documentation-container .documentation-article pre, .documentation-main .documentation-container .documentation-children pre {
  padding: 12px 20px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.0666666667);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5333333333);
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  border-radius: 12px;
}
.documentation-main .documentation-container .documentation-article a, .documentation-main .documentation-container .documentation-children a {
  color: #0099ff;
  text-decoration: none;
}

.button {
  padding: 6px 12px;
  box-shadow: 0 4px 16px 8px rgba(0, 0, 0, 0.5333333333);
  background: linear-gradient(45deg, rgb(243, 109, 225), #0077dd);
  background-size: 180%;
  color: rgba(24, 24, 27, 0.8);
  outline: 0;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 900;
  cursor: pointer;
  transition: 0.5s;
}
.button:hover {
  box-shadow: 0 4px 16px 8px rgba(0, 0, 0, 0.5333333333), inset 0 0px 8px 2px rgba(0, 0, 0, 0.5333333333);
  background-position: right;
  color: #ededed;
}
.button em {
  margin-right: 4px;
}

.button-icon {
  padding: 6px 12px;
  box-shadow: 0 4px 16px 8px rgba(0, 0, 0, 0.5333333333);
  background: linear-gradient(45deg, rgb(243, 109, 225), #0077dd);
  background-size: 180%;
  color: rgba(24, 24, 27, 0.8);
  outline: 0;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 900;
  cursor: pointer;
  transition: 0.5s;
}
.button-icon:hover {
  box-shadow: 0 4px 16px 8px rgba(0, 0, 0, 0.5333333333), inset 0 0px 8px 2px rgba(0, 0, 0, 0.5333333333);
  background-position: right;
  color: #ededed;
}

.button-big {
  font-size: 20px;
  padding: 10px 16px;
}

.button-transparent {
  padding: 6px 12px;
  background: transparent;
  color: #ededed;
  outline: 0;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 900;
  cursor: pointer;
  transition: 0.225s;
}
.button-transparent:hover {
  background: rgba(255, 255, 255, 0.1333333333);
}
.button-transparent.active {
  background: rgba(255, 255, 255, 0.2);
}

a.link {
  cursor: pointer;
  color: #0099ff;
  text-decoration: none;
}
a.link:hover {
  color: #0077dd;
}

::-webkit-scrollbar {
  width: 10px;
  background: rgb(16, 16, 17);
}

::-webkit-scrollbar-thumb {
  background: #0077dd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:not(.fas, .fab, .far, .font-slab) {
  font-family: "Tilt Neon", sans-serif;
}

.font-slab {
  font-family: "Roboto Slab", sans-serif;
}

.app {
  margin-top: 72px;
  width: 100%;
  height: calc(100vh - 72px);
  overflow-x: hidden;
  overflow-y: auto;
  background: rgb(16, 16, 17);
  color: #ededed;
}

.main, .main-soon, .documentation-main {
  z-index: 10;
  position: relative;
  margin-bottom: 350px;
  background: rgb(16, 16, 17);
}
