.container {
	display: flex;
	justify-content: center; /* 水平居中 */
	align-items: center;    /* 垂直居中 */
	height: 100vh;          /* 容器高度为视口高度 */
	font-size:56px;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	font-size:25px;
	background-color: #f1f1f1;
	text-align: center;
}
