.post_uid{
	display: none;
}
#enable{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg,blue,green);
}
#enable .inner{
	text-align: center;
	position: absolute;
	color: white;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 24px;
	font-family: sans-serif;
}
#enable .logo{
	position: absolute;
	left: calc(50% - 24px);
	top: 64px;
	width: 48px;
	height: auto;
}
#enable .icon{
	position: absolute;
	left: calc(50% - 16px);
	bottom: 64px;
	width: 48px;
	height: auto;
	animation: pump 1s infinite linear;
}
@keyframes pump{
	0%,100%{
		transform: scale(100%);
	}
	50%{
		transform: scale(110%);
	}
}
.unscrolled .post:first-of-type{
	animation: suggest 3s infinite ease-in-out;
}
@keyframes suggest{
	0%,50%,100%{
		margin-top: -0px;
	}
	25%{
		margin-top: -100px;
	}
}