/*
* Mobile first breakpoints
*/
:root {
  --primary-purple: #3831A0;
  --null-purple: #292372;
  --selected-green: #00FA9A;
  --background-purple: #201C5B;
  --hover-blue: #4D7DF9;
  --selected-gold: #FEA430;
  --primary-light: #D1EEE9;
  --secondary-dark: #201C5B;
  --near-white: #F3F2F2;
}

.primary-purple {
  color: var(--primary-purple);
}

.null-purple {
  color: var(--null-purple);
}

.selected-green {
  color: var(--selected-green);
}

.background-purple {
  color: var(--background-purple);
}

.hover-blue {
  color: var(--hover-blue);
}

.selected-gold {
  color: var(--selected-gold);
}

.primary-light {
  color: var(--primary-light);
}

.secondary-dark {
  color: var(--secondary-dark);
}

.near-white {
  color: var(--near-white);
}

.bg-primary-purple {
  background-color: var(--primary-purple);
}

.bg-null-purple {
  background-color: var(--null-purple);
}

.bg-selected-green {
  background-color: var(--selected-green);
}

.bg-background-purple {
  background-color: var(--background-purple);
}

.bg-hover-blue {
  background-color: var(--hover-blue);
}

.bg-selected-gold {
  background-color: var(--selected-gold);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.bg-secondary-dark {
  background-color: var(--secondary-dark);
}

.bg-near-white {
  background-color: var(--near-white);
}

/*
* Mobile first breakpoints
*/
/*
* Typography
*/
body {
  font-family: Roboto, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h1,
.large-title {
  font-weight: bold;
  font-size: 1.625rem;
  margin: 1.625rem 0;
  line-height: 1.25;
}
@media only screen and (min-width: 600px) {
  h1,
  .large-title {
    font-size: 3rem;
    margin: 3rem 0;
  }
}

h2,
.medium-title {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 1.5rem 0;
}

h3,
.small-title {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
  margin: 1.5rem 0;
}
@media only screen and (min-width: 900px) {
  h3,
  .small-title {
    font-size: 1.25rem;
  }
}

p {
  margin: 1rem 0;
}

a {
  text-decoration: none;
  color: var(--hover-blue);
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.2;
}
a:hover {
  color: var(--primary-purple);
}
a:active {
  color: var(--hover-blue);
}

/*
* Layout
*/
.content {
  max-width: 1024px;
  padding: 24px 16px;
  margin: 0 auto;
}
@media only screen and (min-width: 600px) {
  .content {
    padding: 32px;
  }
}
@media only screen and (min-width: 900px) {
  .content {
    padding: 64px 32px;
  }
}

/*
* About
*/
.about {
  background-image: url("/static/assets/matt-using-vocable.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about__logo {
  display: block;
  width: 30%;
  max-width: 384px;
  min-width: 192px;
}
.about__headline {
  color: var(--selected-green);
  text-align: center;
  margin-top: 24px;
}
.about__content {
  color: var(--primary-light);
  text-align: center;
}
.about__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.about__store-links {
  margin-top: 24px;
}
.about__store-links a {
  display: block;
  width: 192px;
}
.about__store-links a:not(:first-child) {
  margin-top: 8px;
}
.about__wordmark {
  color: var(--primary-light);
  margin-top: 48px;
}
.about__wordmark-link {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  color: inherit;
}
.about__wordmark-link:hover {
  color: inherit;
}
.about__wordmark-logo {
  display: block;
  margin: 0 0 0 12px;
  width: 144px;
}
@media only screen and (min-width: 600px) {
  .about__wordmark-logo {
    width: 192px;
  }
}
.about__webby {
  flex: 1 1 0;
  min-width: 0;
  max-height: 12.5rem;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/*
* Video
*/
.video {
  background-color: var(--secondary-dark);
  padding: 64px 0;
}
@media only screen and (min-width: 600px) {
  .video {
    padding: 96px 0;
  }
}
.video__container {
  padding: 0;
  max-width: 1200px;
}
.video__headline {
  color: var(--selected-green);
  text-align: center;
  margin-top: 96px;
  margin-bottom: 4px;
}
.video__sub-headline {
  color: var(--selected-green);
  text-align: center;
  margin-bottom: 8px;
}
.video__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video__embed embed,
.video__embed iframe,
.video__embed object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
* Showcase
*/
.showcase {
  background-color: var(--secondary-dark);
  color: var(--selected-green);
  padding: 32px 0 64px 0;
}
.showcase .medium-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 900px) {
  .showcase .medium-title {
    font-size: 1.5rem;
  }
}
.showcase__separator {
  margin: 0 auto;
  height: 1px;
  width: 75%;
  background: var(--primary-purple);
}
.showcase__animations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 600px) {
  .showcase__animations {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.showcase__animation {
  max-width: 256px;
}
.showcase__animation-caption {
  text-align: center;
  margin: 0 0 32px;
}
.showcase__item {
  max-width: 384px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 900px) {
  .showcase__item {
    max-width: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .showcase__item .showcase__image-container {
    width: 50%;
    margin-right: 32px;
    justify-content: flex-end;
  }
  .showcase__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .showcase__item:nth-child(even) .showcase__image-container {
    margin-right: 0;
    margin-left: 32px;
    justify-content: flex-start;
  }
}
.showcase__image-container {
  display: flex;
  justify-content: center;
}
.showcase__ratio-box {
  width: 100%;
  height: 0;
  overflow: hidden;
  position: relative;
}
.showcase__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.showcase__caption {
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .showcase__caption {
    text-align: left;
    max-width: 276px;
  }
}

/*
* Story
*/
.story {
  background-color: var(--primary-purple);
  width: 100%;
}
.story__container {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 600px) {
  .story__container {
    flex-direction: row;
  }
}
.story__images {
  width: 100%;
}
.story__images img:not(:first-child) {
  margin-top: 16px;
}
@media only screen and (min-width: 600px) {
  .story__images img:not(:first-child) {
    margin-top: 24px;
  }
}
.story__copy {
  width: 100%;
  color: var(--near-white);
}
@media only screen and (min-width: 600px) {
  .story__copy {
    margin-left: 2rem;
  }
}
.story__copy-heading {
  color: var(--selected-green);
  margin-top: 32px;
}

/*
* Contact
*/
.contact {
  color: var(--background-purple);
  background-color: var(--primary-light);
  text-align: center;
  padding: 32px 0;
}
.contact__links {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact__link {
  color: var(--primary-purple);
}
.contact__link:hover {
  color: var(--secondary-dark);
}
.contact__link:not(:first-child) {
  margin-left: 48px;
}
.contact__link img {
  display: inline-block;
  width: 20px;
  margin-right: 4px;
}
.contact__contribute {
  padding-top: 24px;
}

/*
* Footer
*/
.footer {
  background-color: var(--secondary-dark);
  display: flex;
  justify-content: center;
}
.footer__link {
  color: var(--selected-green);
}
.footer__link:hover {
  color: var(--primary-light);
}

/*
* Other
*/
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-up {
  animation-name: fade-in-up;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fade-in-up.delay-1 {
  animation-delay: 0.75s;
}
.fade-in-up.delay-2 {
  animation-delay: 1.5s;
}
.fade-in-up.delay-3 {
  animation-delay: 1.7s;
}
.fade-in-up.delay-4 {
  animation-delay: 1.9s;
}
.fade-in-up.delay-5 {
  animation-delay: 2.1s;
}

.privacy {
  background-color: var(--primary-light);
  color: var(--background-purple);
}
.privacy h1, .privacy h2, .privacy h3 {
  color: var(--primary-purple);
}
.privacy a {
  font-size: inherit;
  text-decoration: underline;
}

/*
* Supported devices
*
* Note: these styles are shared between the supported devices
* section on the home page and the support page.
*/
.supported {
  color: var(--primary-purple);
  background-color: var(--near-white);
}
.supported__multilist {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (min-width: 600px) {
  .supported__multilist {
    flex-direction: row;
    margin-bottom: 48px;
  }
}
.supported__multilist-column {
  width: 100%;
}
.supported__list-header {
  margin: 8px 0;
}
@media only screen and (min-width: 600px) {
  .supported__list-header {
    margin-top: 0px;
  }
}
.supported__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.supported__list-item {
  color: var(--null-purple);
  line-height: 1.5rem;
}
.supported__link {
  color: var(--primary-light);
  background-color: var(--primary-purple);
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 0;
  text-decoration: none;
  font-weight: normal;
  display: inline-block;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.supported__link:hover {
  color: var(--secondary-dark);
  background-color: var(--selected-green);
}
/*# sourceMappingURL=index.css.map */