:root {
  --white: #fafafa;
  --black: #1d1e1f;
}

body {
  background-color: var(--white);
  color: #111;
  font-family: Inter, sans-serif;
  font-size: 1em;
  line-height: 140%;
}

h1 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 600;
  line-height: 100%;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.7em;
  font-weight: 600;
  line-height: 120%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 120%;
}

h4 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 120%;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 30px;
}

a {
  color: #7979df;
  text-decoration: none;
}

.section {
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.left-circle {
  z-index: 2;
  width: 70vh;
  height: 70vh;
  object-fit: contain;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: -5vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.right-circle {
  z-index: auto;
  width: 70vh;
  height: 70vh;
  text-align: center;
  background-color: #ebebeb;
  background-image: linear-gradient(165deg, #ffba08, #e94256);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -5vh;
  display: flex;
  position: relative;
}

.right-circle.dark {
  background-image: linear-gradient(165deg, #015f80, #61b6cd), linear-gradient(165deg, #ffba08, #e94256);
}

.heading {
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, .1);
  margin-bottom: 5vh;
  position: relative;
  transform: perspective(1000px);
}

.subheading {
  z-index: 2;
  color: #30323d;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .12);
  position: relative;
}

.style-guide-section {
  padding: 10vh 7vw;
}

.spacer {
  height: 30px;
}

.style-guide-container {
  max-width: 600px;
  border-bottom: 2px solid #e2e2e2;
  padding-top: 50px;
  padding-bottom: 50px;
}

.rich-text-block {
  font-size: 1.1em;
}

.rich-text-block h1 {
  margin-bottom: 20px;
  font-size: 2.4em;
}

.rich-text-block h2, .rich-text-block h3 {
  margin-bottom: 15px;
}

.rich-text-block h4, .rich-text-block h5 {
  margin-bottom: 10px;
}

.submit-button {
  background-color: #7f7fd8;
  border-radius: 50px;
  padding: .5em 2em;
  font-size: 1.2em;
  transition: background-color .3s;
}

.submit-button:hover {
  background-color: #474766;
}

.submit-button:active {
  background-color: #252526;
}

.right-top {
  z-index: 1;
  width: 30vh;
  height: 30vh;
  background-color: #b9b9b9;
  background-image: linear-gradient(165deg, #e547ff, #622aff);
  border-radius: 50%;
  position: absolute;
  top: -5vh;
  right: -5vh;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, .15);
}

.right-top.dark {
  background-image: linear-gradient(165deg, #2f82ff, #005fec);
}

.right-bottom {
  width: 15vh;
  height: 15vh;
  background-color: #b9b9b9;
  background-image: linear-gradient(165deg, #2aff99, #23ce6b);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, .1);
}

.right-bottom.dark {
  background-image: linear-gradient(#fd9d3a, #d86e01), linear-gradient(165deg, #2aff99, #23ce6b);
}

.left-background {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border: 2px solid #4d4d4d;
  border-radius: 50%;
  position: absolute;
}

.left-background.dark {
  background-color: var(--black);
}

.left-image {
  z-index: 1;
  position: relative;
}

.right-background {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border: 2px solid #4d4d4d;
  border-radius: 50%;
  display: none;
  position: absolute;
}

.right-background.dark {
  background-color: var(--black);
}

.right-top-background {
  width: 101%;
  height: 101%;
  background-color: var(--white);
  border: 2px solid #4d4d4d;
  border-radius: 50%;
  display: none;
  position: absolute;
  top: -.5%;
  left: -.5%;
  overflow: hidden;
}

.right-top-background.dark {
  background-color: var(--black);
}

.right-bottom-background {
  width: 101%;
  height: 101%;
  background-color: var(--white);
  border: 2px solid #4d4d4d;
  border-radius: 50%;
  margin-top: -.5%;
  margin-left: -.5%;
  display: none;
  position: absolute;
}

.right-bottom-background.dark, .dark-theme {
  background-color: var(--black);
}

.link-button {
  color: #fff;
  background-color: rgba(109, 109, 109, .19);
  border-radius: 50px;
  padding: 8px 16px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  position: absolute;
  bottom: 8%;
  right: 6%;
}

.link-button:hover {
  color: #000;
  background-color: rgba(109, 109, 109, .28);
}

.link-button.static {
  position: static;
}

.link-button.buy-template {
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  top: 3%;
  bottom: auto;
}

.utility-page-wrap {
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.footer {
  color: #777;
  padding-bottom: 4vh;
  padding-left: 5vw;
  font-size: .85em;
  position: absolute;
  bottom: 0;
}

.footer.static {
  position: static;
}

.footer-info {
  margin-bottom: 2px;
}

.footer-links {
  grid-column-gap: 12px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  justify-items: start;
  display: grid;
}

.darker-text {
  color: #30323d;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.5em;
  }

  .left-circle {
    width: 45vw;
    height: 45vw;
  }

  .right-circle {
    z-index: 9999;
    width: 45vw;
    height: 45vw;
  }

  .heading {
    margin-bottom: 3vh;
  }

  .right-top {
    width: 18vw;
    height: 18vw;
  }

  .right-bottom {
    width: 8vw;
    height: 8vw;
    left: 5vw;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  .left-circle {
    width: 25vh;
    height: 25vh;
  }

  .right-circle {
    z-index: auto;
    width: 40vh;
    height: 40vh;
  }

  .heading {
    margin-top: 3vh;
    margin-bottom: 3vh;
    font-size: 1.6em;
  }

  .right-top {
    width: 15vh;
    height: 15vh;
  }

  .right-bottom {
    width: 5vh;
    height: 5vh;
  }

  .left-image {
    max-width: 150%;
    min-height: 100%;
  }

  .link-button.buy-template {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.2em;
  }

  .section {
    min-height: 85vh;
    flex-direction: column;
  }

  .left-circle {
    width: 60vw;
    height: 60vw;
    margin-bottom: -2.5vh;
    margin-right: 0;
  }

  .right-circle {
    z-index: auto;
    width: 60vw;
    height: 60vw;
    margin-top: -2.5vh;
    margin-left: 0;
  }

  .heading {
    margin-top: 0;
    margin-bottom: 1vh;
  }

  .subheading {
    font-size: 1.1em;
  }

  .style-guide-section {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .style-guide-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .right-top {
    width: 22vw;
    height: 22vw;
  }

  .right-bottom {
    width: 12vw;
    height: 12vw;
  }

  .left-image {
    max-width: 100%;
    min-height: auto;
  }

  .link-button {
    width: 40%;
    color: #fff;
    text-align: center;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: .8em;
    bottom: 12%;
    right: 30%;
  }

  .link-button.buy-template {
    width: auto;
    color: #fff;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    font-size: 1em;
    display: block;
    right: 6%;
  }

  .footer {
    padding-bottom: 0;
  }
}


