body {
  margin: 0;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em 0;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: 2em;
}

a {
  color: inherit;
}

@media (min-width: 400px) {
  body {
    font-size: 16px;
  }
}

/* layout */
.container {
  max-width: 1140px;
  margin: auto;
  flex-wrap: nowrap;
  align-items: center;
}
.container.full {
  max-width: none;
}

.flex {
  display: flex;
}
.spaced {
  justify-content: space-between;
}

.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.flex-golden {
  flex: 1.61803398875;
}

/* other helpers */
.text-center {
  text-align: center;
}

/* variables */
:root {
  /* base colors */
  --color-black: #222;
  --color-gray: #f7f7f7;
  --color-gray-dark: #969696;
  --color-brand: #27b98c;
  --color-brand-light: #50c9a4;
  --color-blue: #1716bd;
  --color-blue-dark: #111429;
  --color-purple: #3b1d82;
  --color-purple-transparent: rgba(59, 29, 130, 0.9);

  /* base aliases */
  --color-text: var(--color-black);

  /* button colors */
  --color-button: var(--color-text);
  --color-button-negative: white;
  --color-button-brand: white;
  --color-button-brand-border: var(--color-brand);
  --color-button-brand-background: var(--color-brand);
  --color-button-brand-hover-background: var(--color-brand-light);
}

/* buttons */
button,
a.button {
  padding: 0.8em 2em;
  border: 1px solid var(--color-button);
  border-radius: 4px;
  color: var(--color-button);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}
button:hover,
a.button:hover {
  background: var(--color-button);
  color: var(--color-button-negative);
}
button.brand,
a.button.brand {
  background: var(--color-button-brand-background);
  color: var(--color-button-brand);
  border-color: var(--color-button-brand-border);
}
button.brand:hover,
a.button.brand:hover {
  background: var(--color-button-brand-hover-background);
  color: var(--color-button-brand);
}

.cta-animation {
	transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-font-smoothing: antialiased;
	transform: perspective(1px) translateZ(0);
	display: inline-block;
}
.cta-animation:hover {
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
	transform: scale(1.1);
}

@media only screen and (max-width: 768px) {
	.container {
		padding: 0 1.4em;
	}
}

@keyframes slide-in-top {
	0% {
		transform: translateY(-1000px);
		opacity: 0;
  }
  100% {
		transform: translateY(0);
		opacity: 1;
  }
}
