html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;

}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  text-align: center;

  /* background-image: linear-gradient(to bottom, rgba(73, 171, 251, 0.295), rgba(255, 220, 248, 0.6)); */
  /* cursor: none; 隱藏系統游標 */
  /* position: relative; */
  /* 為了讓 .bottom-section 靠下 */
}


.top-section {
  display: flex;
  justify-content: left;
  /* 水平置中 */
  align-items: center;
  /* 垂直置中 */
  gap: 20px;
  width: 75%;
  height: auto;

  margin-top: 50px;
  /* 上方空間 */
  margin-bottom: 10px;
  /* 下方空間 */
}

.logo {
  width: 50px;
  height: 50px;
  background-color: #007BFF;
  border-radius: 50%;

  background-image: url('logo.png');
  background-size: 70%;
  /* 調整圖片大小（可根據需要更改） */
  background-repeat: no-repeat;
  /* 防止圖片重複 */
  background-position: center;
  /* 圖片置中 */
}



.bottom-section {
  display: flex;
  position: absolute;
  bottom: 50px;
  /* 靠底部 */
  left: 50%;
  transform: translateX(-50%);
  /* 水平置中 */
  align-items: center;
  gap: 10px;
  flex-direction: column;
  /* 確保內容垂直排列 */
}

.option-group {
  display: flex;
  align-items: center;
  gap: 20px;
  width: auto;
}


.button {
  display: inline-block;
  padding: 10px 15px;
  font-size: 18px;
  color: white;
  background-color: #007BFF;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;

  /* cursor: none; 隱藏系統游標 */
}

.button:hover {
  background-color: #0056b3;
}



h1 {
  font-size: 36px;
  color: #333;
  text-align: left;
  width: auto;

  /* padding-left: 10%; 左側空間 */
}

h2 {
  font-size: 20px;
  color: #333;
  text-align: left;
  /* 文字靠左對齊 */
  width: 75%;
  /* 限制寬度 */
  margin-left: 10px;
  /* 保留左邊空間，可根據需求調整 */

}


.black-link {
    color: black;          /* 文字顏色 */
    text-decoration: none; /* 去掉底線 */
}

.black-link:hover {
    color: blue;           /* 滑鼠移上去變灰色，可選 */
}


.floating-home {
    position: fixed;      /* 固定在視窗右下角 */
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;   /* 圓形 */
    background-color: #007BFF;

    background-image: url('home.png');  /* 換成你的首頁圖片 */
    background-size: 70%;               /* 調整圖片大小 */
    background-repeat: no-repeat;       /* 不重複 */
    background-position: center;        /* 置中 */

    cursor: pointer;     /* 滑鼠變手指 */
    z-index: 1000;       /* 保證浮在最上層 */
}

.floating-home:hover {
    transform: scale(1.1);          /* 滑鼠懸停放大 */
    transition: transform 0.2s;
}




@media (max-width: 600px) {
  .container {
    padding: 10px;
  }

  .option-group {
    width: 100%;
  }
}