.orb-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.overlay {
  display: block;
  position: relative;
  margin: 0 auto 15vh;
  width: 100%;
  max-width: 1140px;
  max-height: auto;
  padding: 3rem 6rem 3rem;
  align-items: center;
  background: #0035545c;
  box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

.overlay__inner {
  margin: 0 auto;
  max-width: 38rem;
  width: 90%;
}

@media only screen and (max-width: 1140px) {
  .overlay__overflow {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media only screen and (max-width: 840px) {
  .overlay__overflow {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .overlay__inner {
    margin: 0 auto;
    max-width: 28rem;
  }

}

@media only screen and (max-width: 600px) {
  .overlay__overflow {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .overlay__inner {
    margin: 0 auto;
    max-width: 19rem;
  }
}

.overlay__title {
  font-size: 1.875rem;
  line-height: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

.text-gradient {
  background-image: linear-gradient(45deg,
      var(--base) 25%,
      var(--complimentary2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.overlay__description {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 3rem;
}

.overlay__btns {
  width: 100%;
  max-width: 30rem;
  display: flex;
}

.overlay__btn {
  width: 50%;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: transparent;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  transition: transform 150ms ease;
  outline-color: hsl(var(--hue), 95%, 50%);
}

.overlay__btn:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.overlay__btn--transparent {
  background: transparent;
  color: var(--dark-color);
  border: 2px solid var(--dark-color);
  border-width: 2px;
  margin-right: 0.75rem;
}

.overlay__btn-emoji {
  margin-left: 0.375rem;
}

@media (prefers-contrast: high) {
  .orb-canvas {
    display: none;
  }
}

@media only screen and (max-width: 1140px) {
  .overlay {
    padding: 8rem 4rem;
  }
}

@media only screen and (max-width: 840px) {
  .overlay {
    padding: 4rem;
    height: auto;
  }

  .overlay__title {
    font-size: 1.25rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
  }

  .overlay__description {
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .blog-slider__button {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .overlay {
    padding: 1.5rem;
  }

  .overlay__btns {
    flex-wrap: wrap;
  }

  .overlay__btn {
    width: 100%;
    font-size: 0.75rem;
    margin-right: 0;
  }

  .overlay__btn:first-child {
    margin-bottom: 1rem;
  }
}

.outer_overlay {
  padding: 1.5rem 1.5rem 6rem 1.5rem;
}

@media only screen and (max-width: 600px) {
  .overlay__inner {
    margin: 0 auto;
    max-width: 16rem;
  }

  .navigation-clean-button .navbar-toggler {
    color: #888;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    text-align: center;
  }

  #sign-in-button {
    margin: 0 auto;
    margin-top: 20px;
    width: 250px;
  }
}