.box::before{
	content: 'Em construção...';
	font-family: roboto;
	font-size: 2.0rem;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	
}

.box::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom:0;
	left: 0;
	background: #fff;
	transform: scale(1.6);
	border-radius: 30%;
	animation: animate 10s ease-in-out infinite;
}