html,body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center;     /* 垂直居中 */
  min-height: 100vh;       /* 确保body高度为整个视口高度 */
  background-color: #f0f0f0; /* 可选：设置页面背景色 */
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
}