body{
	margin: 0;
	padding: 0;
	background: #56CCF2;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to top, #2F80ED, #56CCF2);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to top, #2F80ED, #56CCF2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	color: white;
	font-family: "Open Sans";
}

.wrapper{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

a{
	text-decoration: none;
	color: black;
	padding: .8rem 2rem;
	background: #fff;
	border-radius: 25px;
}

h1{
	font-size: 2.2rem;
	margin: 1rem 0;
}

h2{
	margin-bottom: 2rem;
	display: inline-block;
}

img{
	width: 1.8rem;
	height: auto;
	display: inline-block;
	margin-bottom: -.15rem;
	margin-left: .1rem;
}


.button-wrapper {
    padding: 1.5rem 0;
    filter: url("#goo");
}

.button {
    display: inline-block;
    text-align: center;
    background: white;
    color: black;
    padding: 1.2rem 1.4rem;
    line-height: 1;
    border-radius: 1em;
    position: relative;
    min-width: 7rem;
	 color: #2f80ed;
    text-decoration: none;
    font-family: "Open Sans";
    font-size: 1rem;
	font-weight: 600;
}

.button:before,
.button:after {
    width: 4.4em;
    height: 2.95em;
    position: absolute;
    content: "";
    display: inline-block;
    background: white;
    border-radius: 50%;
    transition: transform 1s ease;
    transform: scale(0);
    z-index: -1;
}

.button:before {
    top: -25%;
    left: 20%;
}

.button:after {
    bottom: -25%;
    right: 20%;
}

.button:hover:before,
.button:hover:after {
    transform: none;
}

@media only screen and (max-width: 768px) {
	h2{
		font-size: 1.2rem;
		margin-bottom: 1rem;
		display: inline;
	}
	img{
		width: 1.3rem;
	}
}

