@font-face {
    font-family: 'HakgyoansimWoojuR';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-2@1.0/HakgyoansimWoojuR.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html, body {
  height: auto;        /* html 쪽 100%/100vh 강제 방지 */
  min-height: 100%;    /* 페이지가 짧을 때만 보정 */
  overflow-y: auto;    /* 수직 스크롤 허용 */
}

body {
  background-color: black;
  color: white;
  font-family: 'HakgyoansimWoojuR', sans-serif;
  min-height: 100vh;
  margin: 0;
}

#choice-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.choice {
  font-family: 'HakgyoansimWoojuR', sans-serif;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.60);
  border-radius: 40px 0px 40px 10px;
  border: 3px solid rgb(80, 80, 80);
  padding: 25px;
  margin: 5px 0px auto;
  color: white;
  text-align: center;
  filter: drop-shadow(2px 2px 2px rgb(95, 95, 95));
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  min-width: 100px;
}

.choice:hover,
.choice.active {
  filter: brightness(1.2);
  border-color: white;
}

.hidden {
  display: none;
}
