body {
  background-color: #f8f9fa;
  padding-top: 50px;
  text-align: center;
}
.grid {
  display: grid;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
  max-width: 400px; /* 퍼즐 전체의 최대 폭을 400px로 설정합니다. */
  margin-left: auto;
  margin-right: auto;
}
.tile {
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 아래 두 줄을 삭제하거나 주석 처리하여 타일의 고정된 너비와 높이를 제거합니다. */
  /* width: 60px; */
  /* height: 60px; */
  
  /* 대신, 그리드 안에서 타일이 항상 정사각형이 되도록 비율을 설정합니다. */
  aspect-ratio: 1 / 1; 
  
  font-size: 20px;
  font-weight: bold;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  user-select: none;
  cursor: pointer;
  transition: transform 0.1s ease;
}
.tile:active {
  transform: scale(0.95);
}
.empty {
  background-color: #dee2e6;
  cursor: default;
}