html,
body {
  margin: 0; }

* {
  box-sizing: border-box;
  max-width: 100%; }

.gradient.violet {
  background-color: #581dce;
  background: linear-gradient(45deg, #581dce, #2c0c9f); }

* {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }

.color.white {
  color: #fff; }

.color.primary {
  color: #581dce; }

.w-1-1 {
  width: 100%; }

.w-1-2 {
  width: calc(100% / 2); }

@media screen and (max-width: 640px) {
  .w-1-1-mob {
    width: calc(100%); }
  .w-1-2-mob {
    width: calc(100% / 2); } }

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .w-1-1-tab {
    width: calc(100%); }
  .w-1-2-tab {
    width: calc(100% / 2); } }

.button {
  display: inline-block;
  background: #f2f2f2;
  padding: 20px 40px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #2c0c9f;
  text-decoration: none; }
  .button:hover, .button:focus {
    background-color: #fff; }
  .button:active {
    background-color: #f5f5f5; }
  .button.small {
    padding: 10px 20px;
    border-radius: 7px; }
  .button.primary {
    background: #581dce;
    color: #f2f2f2; }

.padding {
  padding: 20px; }

.page {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 20px 50px 0; }
  .page .content {
    text-align: center;
    max-width: 1024px; }
  .page .description {
    align-items: center;
    display: flex;
    flex-direction: column; }
  .page .fig {
    max-height: 100vh;
    width: 477px;
    vertical-align: bottom; }
  .page .main-cta {
    margin: 20px 0 30px; }
  .page .logo {
    width: 50px;
    height: 50px; }

main.page.landing-page {
  align-items: center; }

main.page.not-found-page {
  align-items: center; }
