@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

:root {
  --theme-blue-light: #e7f5ff;
  --theme-blue-dark: #0e68b5;
  --theme-blue-bright: #00c7fd;

  --font-mono: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
}

html,
body {
  height: 100%;
  margin: 0;
  background-color: var(--theme-blue-light);
}

.divider {
  height: 1px;
  width: 50%;
  background-color: #8a8a8a;
  margin: auto;
}

#hero {
  padding: 80px 20px;
  padding-top: 150px;
  text-align: center;
}

#hero #logo {
  font-family: "Source Sans Pro";
  display: flex;
  justify-content: center;
}

#hero #logo p {
  font-size: 75px;
  font-weight: 800;
}

#hero #subtitle {
  text-align: center;
  font-size: 30px;
  margin-top: 50px;
  font-family: "Source Sans Pro";
  line-height: 33px;
}

.view-on .view-on-option {
  padding: 11px 16px;
  border-radius: 8px;
  background: white;
  color: black;
  text-decoration: none;
  font-family: "Source Sans Pro";
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

.view-on .view-on-option svg {
  margin-right: 8px;
}

.installation {
  font-family: "Source Sans Pro";
  background-color: var(--theme-blue-dark);
  color: white;
  padding: 50px 20px;
}

.installation .installation-options {
  display: flex;
  font-size: 20px;
  width: 80%;
  max-width: 1000px;
  margin: auto;
}

.installation .installation-option {
  user-select: none;
  cursor: pointer;
}

.installation .installation-option.active-option {
  text-decoration: underline;
}

.installation .option {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  margin-top: 20px;
}

.installation .terminal {
  font-size: 14px;
  line-height: 34px;
  background-color: rgb(0, 0, 0, 0.5);
  border: 1px solid rgba(166, 175, 194, 0.25);
  border-radius: 8px;
  padding: 11px 16px;
  font-family: var(--font-mono);
  position: relative;
  overflow: auto;
  white-space: nowrap;
  transition: 0.3s;
}

.terminal pre {
  overflow: auto;
  margin: 0;
}

.terminal code {
  background-color: transparent;
  padding: 0 !important;
  overflow: hidden;
}

.terminal code::-webkit-scrollbar {
  width: 10px;
}

.terminal code::-webkit-scrollbar-thumb {
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: rgb(255, 255, 255, 0.5);
}

.installation .terminal:hover {
  border-color: rgba(166, 175, 194, 0.8);
}

.installation .terminal .terminal-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  opacity: 0;
  transition: 0.2s;
}

.installation .terminal:hover .terminal-icon{
  opacity: 1;
}

.installation .terminal .terminal-copied {
  display: none;
}

.further-steps {
  text-align: center;
  font-size: 20px;
  font-family: "Source Sans Pro";
  margin-top: 40px;
  padding-bottom: 40px;
}

.further-steps a {
  text-decoration: none;
}

#view-demo {
  padding: 14px 19px;
  border-radius: 8px;
  background: white;
  color: black;
  text-decoration: none;
  font-family: "Source Sans Pro";
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 550px) {
  #hero #logo p {
    font-size: 60px;
  }

  #hero #subtitle {
    font-size: 25px;
  }
}
