/* Google Fonts 已移除，使用系统字体 */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  z-index: 2;
  overflow: hidden;
  font-family: 'Courier New', 'Consolas', monospace, sans-serif;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

#render {
  display: block;
  overflow: hidden;
  z-index: 1;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cont {
  background: rgba(251,80,90,0.8);
  padding: 10px;
  position: absolute; 
  display: block;
  top: 40vh;
  width: 100vw;
  text-align: center;
}