body{
    background-color: #EBF7EB;
    display: flex;
    justify-content: center;   /* 水平置中 */
/*  align-items: center;       */
/*  垂直置中 */
}

/* 讓整個畫面成為 flex 容器並置中內容 */
html, body {
    height: 100%;
    margin: 10;
}

#mainContainer {
    width: 640px;
    height: 480px;
    max-width: 100%;
}

.subContainer {
    margin-bottom: 8px;
	width: 640px;
}

#gameSelect {
	width: 640px;
}

/* 確保遊戲畫布能適應其容器，並強制遊戲畫面拉伸填滿其父容器 */
#game {
    width: 100%;
    height: 100%;
}

.img-wrapper {
  text-align: center;
}

.img-wrapper img {
  max-width: 20%; /* optional */
  height: auto;    /* optional */
  transition: max-width 0.2s ease;
}

/* 當滑鼠懸停在圖片或容器上時 */
.img-wrapper:hover img {
  max-width: 100%;   /* 放大至容器的 100% */
}