body {
}

.container {
  margin: 10vh auto 20px auto;
  width: auto;
}

@media (max-width: 1024px) {
  body {
    background-image: none;
  }
  .container {
    margin: 0px auto;
  }
}

a.primary-button {
  display: inline-block;
  padding: 2px;
  border-radius: 100vw;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#9a0ed7),
    color-stop(50%, #d948b5),
    to(#ff8c94)
  );
  background-image: linear-gradient(90deg, #9a0ed7, #d948b5 50%, #ff8c94);
  -webkit-transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
  transition: all ease-in-out 200ms;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

a.primary-button:hover {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transform: translate(0, -0.25em);
}

span.primary-button-text {
  display: block;
  padding: 1.04em 3.65em;
  border-radius: 100vw;
  background-color: #fff;
  transition: all ease-in-out 200ms;
}

span.primary-button-text:hover {
  opacity: 0.95;
}

.Typewriter {
  display: inline;
}

.phone {
  position: relative;
}

.phone .notch-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
}

.phone .notch-container .notch {
  width: 200px;
  height: 38px;
  margin: 0 auto;
  background-color: #111;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}

.phone .phone-border {
  display: block;
  border: 14px solid #111;
  border-radius: 60px;
  z-index: 99999;
  height: 860px;
  width: 486px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-top: 30px;
}

.close {
  width: 2rem;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 100%;
  display: block;
  font-size: 1px;
  text-indent: -999em;
  position: absolute;
  border: 1px solid #000;
  top: -1rem;
  right: -1rem;
  z-index: 999;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease-out;
}

.close:after {
  font-weight: 300;
  content: '×';
  text-indent: 0;
  font-size: 1.4rem;
  position: absolute;
  top: 0.15rem;
  left: 0.525rem;
}

#overlay {
  transition: opacity 0.35s ease;
  padding: 0em;
  box-sizing: border-box;
  opacity: 0;
  display: flex;
  align-items: center;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  z-index: 99999;
}

#overlay.visible {
  width: 100%;
  height: 100%;
  padding: 1em;
  opacity: 1;
  z-index: 99999;
  @media (min-width: 500px) {
    padding: 2em;
  }
  @media (min-width: 900px) {
    padding: 4em;
  }
}

.video-wrapper {
  box-sizing: border-box;
  min-width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
