body {
    padding:0;
    margin:0;
    min-height: 100vh;
    /*overflow:hidden;
	height: 600px;*/
}
canvas {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;               /* 放到文字后面 */
      display: block;
/*    padding:0;
    margin:0;*/
}
div.btnbg {
    position: relative;        /* 不再固定 */
  width: 100%;
  /* 不要 height:100%，让它随内容自增高 */
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: #1a1a1a;
  padding-top: 7vh;          /* 原先的 top:7% 改成内边距 */
}

div.center {
    /* 文字居中 */
    display: flex;
    justify-content: center;  /* 水平居中 */
    align-items: center;      /* 垂直居中 */
    padding: 10px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

    .highlight {
      font-weight: bold;
      color: #c62828;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .coming {
        padding-bottom: 30px;
        font-size: 5rem;
    }

    #timeElapsed {
        padding-top: 15px;
        font-size: 3rem;
    }