body {
  font-family: 'Noto Sans KR', sans-serif;
}

#lottoNumbers span,
#history span {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 6px;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

#lottoNumbers span:hover {
  transform: scale(1.1);
}

@media (max-width: 480px) {
  #lottoNumbers span {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
