body {
  min-height: 100vh;
  background-color: #252422;
  font-family: 'Roboto', 'Helvetica', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Dosis', 'Helvetica', Arial, sans-serif;
  font-weight: 600;
}

.bg-gradient {
  background: linear-gradient(to bottom right, #000000, #77000000);
}

.bg-gradient2 {
  background: linear-gradient(to bottom right, #000000, #000000);
}

.flex-1 {
  flex: 1;
}

li.d-flex > i.fa.fa-check-circle {
  padding-top: 3px;
}

.preview-image-small,
.app-store-badge {
  width: 100%;
  max-width: 250px;
}

@media (max-width: 768px) {
  ul {
    font-size: 1.1em;
  }
}

.button {
	border-radius: 25px;
	background-color: #6200ee;
	color: #efefef;
	border: 2px;
	text-align: center;
	padding: 10px 20px;
}

.primary-button {
    position: relative;
    border: 2px solid #6200ee;
    border-radius: 500px;
    width: 250px;
    height: 48px;
    overflow: hidden;
    background-color: transparent;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 14px;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
	background-color: #6200ee;
}

.primary-button:hover {
    cursor: pointer;
    border: 2px solid #6200ee;
	background-color: #ffffff;
    color: #6200ee;
}

.primary-button .round {
    border-radius: 50%;
    background-color: #6200ee;
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: -1;
    animation: scale-down 0.2s forwards;
}

.primary-button.animate .round {
    animation: scale-up 0.5s forwards;
}

@keyframes scale-up {
    to {
        transform: scale(600);
    }
}

@keyframes scale-down {
    from {
        transform: scale(600);
    }
    to {
        ransform: scale(0);
    }
}