.card {
  width: 200px;
  height: 300px;
  border: 2px solid #333; /* 검은색 테두리 */
  border-radius: 20px; /* 동글동글한 모서리 */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 1em;
  font-weight: bold;
  padding: 20px;
  margin: 20px;
  background-color: #fff; /* 흰색 배경 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 약한 그림자 */
}

.top-left, .bottom-right {
  font-size: 1.5em; /* 크게 */
  position: absolute;
  color: #333; /* 어두운 회색 */
}

.top-left {
  top: 10px;
  left: 10px;
}

.bottom-right {
  bottom: 10px;
  right: 10px;
}

.center {
  position: absolute;
  font-size: 100px; /* 크기를 크게 설정 */
  text-align: center;
  top: 50%; /* 중앙보다 아래로 이동 */
  transform: translateY(-50%); /* 중앙 정렬 */
}

.red {
  color: red;
}

#statusContainer {
  margin: 20px;
}
