.alert{
	position: fixed;
	z-index: 9999;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width:650px;
	height: 150px;
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	line-height: 150px;
}
@media screen and (max-width: 768px){
	.alert{
		width:80%;
		font-size: 14px;
		min-height: 0px;
		line-height: normal;
	}
}