/* 簡單的 Loading 樣式 */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e5f5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 9999;
}

/* 默認圖片大小 */
#loading-screen img {
  width: 60px; /* 桌面端的尺寸 */
}

/* 手機端加載圖片 */
@media screen and (max-width: 768px) {
  #loading-screen img {
    width: 40px; /* 手機的尺寸 */
  }
}
