<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-color: black;
}

a,
a:visited {
  color: #007bff;
}

.banner-book {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: white;
  flex-wrap: wrap;
  padding-bottom: 15px;
  gap: 10px;
  font-family: monospace;
}

.banner-book .left {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.banner-book .right {
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
}

.banner-book .logo {
  font-size: 50px;
  user-select: none;
}

.banner-book .content {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.banner-book .title {
  color: #0abef2;
  font-size: 16px;
}

.banner-book .link {
  color: #fac43d;
  text-decoration: none;
  font-size: 16px;
}

.cta {
  width: 120px;
  color: #fff;
  border-radius: 5px;
  margin-top: 7px;
  padding: 7px 0px;
  font-family: monospace;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  /* box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1); */
  outline: none;
  background: #663dff;
  border: none;
  z-index: 1;
}

.cta:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #fac43d;
  border-radius: 5px;
  /* box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1); */
  transition: all 0.3s ease;
}

.cta:hover {
  color: #fff;
}

.cta:hover:after {
  left: 0;
  width: 100%;
}

.cta:active {
  top: 2px;
}

@media (min-width: 768px) {
  :root {
    --size: 1.3;
  }

  .terminal {
    padding: 10px;
  }

  .terminal-scroller {
    height: 85dvh;
  }

  .right {
    display: flex;
  }
}

@media (max-width: 768px) {
  .terminal-scroller {
    height: 89dvh;
  }

  .right {
    display: none;
  }

  .banner-book .logo {
    font-size: 40px;
  }

  .banner-book .title {
    font-size: 15px;
  }

  .banner-book .cta {
    width: 100px;
    font-size: 12px;
  }
}

@media (max-width: 663px) {
  .terminal-scroller {
    height: 84dvh;
  }
}

@media (max-width: 510px) {
  .terminal-scroller {
    height: 83dvh;
  }
}
</pre></body></html>