
body, html {
    height: 100%;
    margin: 0;
    background-color: #191919;
}

body {
    font-family: "Exo 2", "Roboto", "Helvetica", Arial, system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-size: cover;
    background-position: center;
    color: white;
}
.container {
    position: relative;
    height: 100%; 
}

.center {
    margin: auto;
    width: 80%;
    padding: 10px;
    text-align: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-button {
    display: inline-block;
    text-align: center;

    line-height: 1.45;
    font-size: 1.125em;
    font-weight: 400;
    border-radius: 1.7rem;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    transition: .3s ease-in-out !important;

    background-color: #0055D1 !important;
    border-color: rgba(255,255,255,0.730882);
    color: #fff;
    box-shadow: 0 0.1rem 0.27rem rgba(0,0,0,0.05) !important;

    /* background-image: linear-gradient(0deg, rgba(#ffffff, 0%), rgba(#ffffff, 0.2) 100%); */

    padding: 0.66667rem 4rem;
    max-width: 320px;

    margin-top: 20px;
    margin-bottom: 10px;
}

.button-jittery {
	animation: jittery 3s infinite;
	&:hover {
		animation: heartbeat 0.2s infinite;
	}
}

@keyframes jittery {
	5%,
	50% {
		transform: scale(1);
	}
	10% {
		transform: scale(0.9);
	}
	15% {
		transform: scale(1.15);
	}
	20% {
		transform: scale(1.15) rotate(-5deg);
	}
	25% {
		transform: scale(1.15) rotate(5deg);
	}
	30% {
		transform: scale(1.15) rotate(-3deg);
	}
	35% {
		transform: scale(1.15) rotate(2deg);
	}
	40% {
		transform: scale(1.15) rotate(0);
	}
}

@keyframes heartbeat {
	50% {
		transform: scale(1.1);
	}
}

a {
    text-decoration: none;
    color: #192440;
}
a:hover {
    color: #ffffff;
}

.color-primary {
    color: #0055D1;
}

.logo-wrapper, .logo-wrapper img {
    display: block;
    max-width: 90%;
    margin: auto;
}

@media (min-width: 992px) {
    .logo-wrapper, .logo-wrapper img {
        max-width: 45%;
    }
}

@media (min-width: 480px) {
    br.sm-hide {
        display: none;
    }
}

h1, h2, h3, a {
    font-family: "Montserrat", "Roboto", "Helvetica", Arial, system-ui, sans-serif;
    font-weight: normal;
}