*{
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}
body{
	margin:0;
	padding:0;
	font-family:Montserrat,sans-serif;
}
.container{
	width:100%;
	min-height: 300px;
	height:100vh;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
	padding-left:15px;
	padding-right:15px;
	background:-webkit-gradient(linear,left top, right bottom,from(#7D2EA0),to(#682AC7));
	background:-webkit-linear-gradient(top left,#7D2EA0,#682AC7);
	background:-o-linear-gradient(top left,#7D2EA0,#682AC7);
	background:linear-gradient(to bottom right,#7D2EA0,#682AC7)
}
@-webkit-keyframes pulsing{
	0%,100%{
			-webkit-transform:scale(1);
			transform:scale(1)
	}
	50%{
			-webkit-transform:scale(1.2);
			transform:scale(1.2)
	}
}
@keyframes pulsing{
	0%,100%{
			-webkit-transform:scale(1);
			transform:scale(1)
	}
	50%{
			-webkit-transform:scale(1.2);
			transform:scale(1.2)
	}
}
.logo{
	-webkit-animation:pulsing 8s ease infinite;
	animation:pulsing 8s ease infinite;
	height:100%;
	max-width:350px
}

.email{
	height:50px;
	margin-top: 5px;
	font-size:24px;
	white-space:nowrap;
	word-break:keep-all;
	text-align:center
}
.emaillink{
	text-decoration:none;
	color: #fff;
}