@charset "UTF-8";
body {
  font-family: sans-serif;
  min-height: 100vh;
  background-color: #f8f6f2;
  line-height: 1.8em;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.bg-alt {
  background-color: #ece9e3;
}

button,
.btn {
  border: none;
  color: white;
  background-color: #4B759A;
  display: inline-block;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s, font-size 0s;
}
button:hover,
.btn:hover {
  background-color: #648fb4;
}
button--cta,
.btn--cta {
  background-color: #CB4451;
}
button--cta:hover,
.btn--cta:hover {
  background-color: #d66c76;
}
button[loading],
.btn[loading] {
  font-size: 0px;
  pointer-events: none;
}
button[loading]::after,
.btn[loading]::after {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  border-color: transparent currentColor currentColor currentColor;
  border-style: solid;
  border-width: 3px;
  border-radius: 100px;
  -webkit-animation: btn-loading 1s linear infinite;
  -moz-animation: btn-loading 1s linear infinite;
  animation: btn-loading 1s linear infinite;
}
button[loading]::before,
.btn[loading]::before {
  content: " ";
  font-size: 16px;
}

@-moz-keyframes btn-loading {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes btn-loading {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes btn-loading {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.card {
  background-color: #fff;
  padding: 1em 2em;
  box-shadow: 0.1em 0.1em 0.5em rgba(0, 0, 0, 0.2);
  color: #111;
}

/*# sourceMappingURL=styles.css.map */
