html, body{
	min-height: 100%;
	background: #000;
	line-height:24px;
}
*{
	margin:0;
	padding:0;
	font-size:18px;
}
ul{
	list-style:none;
}
.hide{
    display: none;
}
.lf{
	float: left;
}
.lr{
	float: right;
}
.red, .red a,.red a h5, .red a p{
    color:#FF0000 !important;
}
a {
    text-decoration: none;
    color: inherit;
}
.mr2 {
	margin-right: 1rem;
}
.ml2 {
	margin-left: 1rem;
}

.main-group{
	box-sizing: border-box;
	max-width:1000px;
	overflow: hidden;
	height:100vh;
	padding:0 5em;
	display: flex;
	align-items: center;
	margin: 0 auto;
}
.main-group .text{
	color: #fff;
	font-size: 1em;
}
.main-group .text span{
	position: relative;
	display:inline-block;
	cursor: pointer;
}
.main-group .text span.action{
	animation: smoke 2s linear forwards;
	transform-origin: bottom;
}

@keyframes  smoke{
	0%{
		opacity: 1;
		filter: blur(0);
		transform: translateX(0) translateY(0) rotate(0deg) scale(1);
	}
	50%{
		opacity: 1;
		pointer-events:none;
	}
	100%{
		opacity: 0;
		filter: blur(20px);
		transform: translateX(300px) translateY(-300px) rotate(720deg) scale(4);
	}


}