.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  background: transparent;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
}
.social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}
.social-icons img:hover {
  transform: scale(1.2);
  cursor: pointer;
}

@font-face {
  font-family: iconfont;
  src: url("iconfont.ttf") format("truetype");
}
* {
  user-select: none;
}

html,
body {
  overflow: hidden;
  background-color: #000;
}

body {
  margin: 0;
  position: fixed;
  width: 100%;
  height: 100%;
}

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

.dg {
  opacity: 0.9;
}
.dg .property-name {
  overflow: visible;
}

.big-font {
  font-size: 150%;
  color: #8C8C8C;
}

.cr.function.appbig-font {
  font-size: 150%;
  line-height: 27px;
  color: #A5F8D3;
  background-color: #023C40;
}
.cr.function.appbig-font .property-name {
  float: none;
}
.cr.function.appbig-font .icon {
  position: sticky;
  bottom: 27px;
}

.icon {
  font-family: iconfont, sans-serif;
  font-size: 130%;
  float: right;
}

.twitter::before {
  content: "a";
}

.github::before {
  content: "b";
}

.app::before {
  content: "c";
}

.discord::before {
  content: "d";
}

.promo {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: auto;
  color: lightblue;
  background-color: rgba(0, 0, 0, 0.4);
  animation: promo-appear-animation 0.35s ease-out;
}

.promo-middle {
  display: table-cell;
  vertical-align: middle;
}

.promo-content {
  width: 80vw;
  height: 80vh;
  max-width: 80vh;
  max-height: 80vw;
  margin: auto;
  padding: 0;
  font-size: 2.8vmax;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  text-align: center;
  background-image: url("promo_back.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.promo-header {
  height: 10%;
  padding: 2px 16px;
}

.promo-close {
  width: 10%;
  height: 100%;
  text-align: left;
  float: left;
  font-size: 1.3em;
}
.promo-close:hover {
  cursor: pointer;
}

.promo-body {
  padding: 8px 16px 16px;
  margin: auto;
}
.promo-body p {
  margin-top: 0;
  mix-blend-mode: color-dodge;
}

.link {
  width: 100%;
  display: inline-block;
}
.link img {
  width: 100%;
}

@keyframes promo-appear-animation {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (orientation: landscape) {
  html,
  body {
    height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
  #social-icons {
    flex-direction: column;
    position: fixed;
    left: 35px !important;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) !important;
    gap: 25px;
    margin-top: 0;
  }
  .social-icons img {
    width: 35px;
    height: 35px;
  }
  .logo-new {
    top: 5rem !important;
  }
  .exclusive-access-cn {
    top: 27rem !important;
  }
  #midsection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    height: 400px;
  }
  #midsection .logo-new {
    position: relative;
  }
}
@media screen and (orientation: portrait) {
  .social-icons {
    position: fixed !important;
    bottom: 20vh !important;
  }
}