/* 画面全体の中央に */
body {
  justify-content: center; /* 左右中央 */
  align-items: flex-start; /* 上寄せ（中央なら center） */
  margin: 0;
  background-image:url(background.jpg);
  font-family: sans-serif;
  color: aliceblue;
}

/* ゲーム全体の囲い */


/* 見出しと結果テキスト */
h1,
#result-text {
  text-align: center;
}

h2,
#result-text {
  text-align: center;
}
h3,p{
  text-align: center;
}

/* 手札のカード表示（横並び中央） */
#cpu-hand,
#player-hand {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* ボタン類中央配置 */
.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

button {
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
}

/* カード画像 */
.card {
  width: 100px;
  margin: 5px;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card.selected {
  border: 3px solid yellow;
  border-radius: 5px;
}
#audio{
  text-align: center;
  margin-bottom: 25px;
}