* {
  padding: 0;
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  color: #e2e2e3;
}

body {
  padding: 12%;
  background-color: #15191C;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.desktop {
  display: block;
}
@media only screen and (max-width: 496px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media only screen and (max-width: 496px) {
  .mobile {
    display: block;
  }
}

.button {
  letter-spacing: 0.25px;
  box-sizing: border-box;
  padding: 8px 24px;
  border-radius: 6px;
  transition: all 0.125s ease;
  background-color: #0069ff;
  border: 2px solid transparent;
  color: #e2e2e3;
  margin-top: 2%;
  display: inline-block;
}
.button:hover {
  background-color: #2f2f2f;
}
.button.secondary {
  background-color: #2f2f2f;
}
.button.secondary:hover {
  background-color: transparent;
  border-color: #2f2f2f;
}
@media only screen and (max-width: 767px) {
  .button {
    width: 100%;
    text-align: center;
  }
}

.link {
  font-size: 14px;
  color: #e2e2e3;
  border-bottom: 2px solid #e2e2e3;
  transition: all 0.125s ease;
  padding-bottom: 4px;
}
.link:hover {
  color: #0069ff;
  border-color: #0069ff;
}

#header {
  width: 100%;
  max-width: 800px;
  margin: 5% auto;
}
#header .col {
  display: inline-block;
  width: 42%;
  vertical-align: middle;
  margin: 0 3%;
}
@media only screen and (max-width: 767px) {
  #header .col {
    width: 100%;
    margin: 0;
  }
}
#header .col h1 {
  margin-top: 5%;
  font-size: 22px;
  font-weight: 600;
}
#header .col h2 {
  margin-top: 5%;
  font-size: 16px;
}

#header-gif {
  width: 100%;
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  #header-gif {
    margin-top: 10%;
  }
}
#header-gif img {
  width: 100%;
  border-radius: 6px;
}

#video {
  width: 100%;
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  #video {
    margin-top: 10%;
  }
}

#embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 6px;
}

#embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#features {
  width: 100%;
  max-width: 800px;
  margin: 5% auto;
}
#features .col {
  display: inline-block;
  width: 26%;
  vertical-align: top;
  margin: 5% 3%;
}
@media only screen and (max-width: 767px) {
  #features .col {
    width: 100%;
    margin: 5% 0;
  }
}
#features .col .illustration {
  width: 100%;
}
#features .col h4 {
  font-size: 18px;
  font-weight: 600;
}
#features .col h5 {
  font-size: 14px;
  margin-bottom: 2%;
}

#versions {
  text-align: center;
}
#versions h3 {
  margin-top: 5%;
  font-size: 18px;
  font-weight: 600;
}
#versions .button {
  margin-top: 2%;
  padding: 4px 12px;
  font-size: 12px;
}

#slack {
  text-align: center;
}
#slack h3 {
  margin-top: 5%;
  font-size: 18px;
  font-weight: 600;
  color: #aaaaaa;
}
#slack h6 {
  font-size: 16px;
  margin-top: 1%;
}
#slack .secondary {
  margin: 2% auto 10%;
  display: table;
}

#faq {
  width: 100%;
  max-width: 800px;
  margin: 5% auto;
}
#faq h3 {
  margin-top: 5%;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #aaaaaa;
}
#faq .col {
  display: inline-block;
  width: 42%;
  vertical-align: top;
  margin: 5% 3%;
}
@media only screen and (max-width: 767px) {
  #faq .col {
    width: 100%;
    margin: 5% 0;
  }
}
#faq .col h6 {
  font-size: 16px;
  font-weight: 600;
}
#faq .col p {
  margin-top: 1%;
  font-size: 14px;
}
#faq .button {
  margin: 5% auto;
  display: table;
}

#footer {
  width: 100%;
  max-width: 800px;
  margin: 10% auto 0;
  text-align: center;
}
#footer p {
  color: #aaaaaa;
  font-size: 14px;
}/*# sourceMappingURL=styles.css.map */