* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #414141;
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

.page-title {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  text-align: center;
  z-index: 10;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

svg {
  margin: 0 auto;
  display: block;
  max-width: 90vw;
  max-height: 80vh;
}