/* È­¸é ÀüÃ¼ ³ôÀÌ È°¿ëÀ» À§ÇÑ ±âº» ¼³Á¤ */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #f8f9fa;
}

/* flex·Î È­¸é Ã¤¿ì±â */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Çì´õ ¿µ¿ª */
.header {
  background-color: #e0f7fa;
  padding: 20px;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  color: #00796b;
}
.header h1 {
  word-break: keep-all;  /* ÇÑ±Û¿¡¼­ ´Ü¾î ´ÜÀ§ ÁÙ¹Ù²Þ */
  white-space: normal;
  text-align: center;
}

/* º»¹® ¿µ¿ª (flex-grow·Î ³²´Â °ø°£ Ã¤¿ì±â) */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  align-items: center;
  font-size: 1.2em;
  padding: 20px;
  gap: 10px;
}
select {
  font-size: 1.0em;     /* ±Û¾¾ Å©±â */
  padding: 6px 12px;    /* ¿©¹éµµ ¾à°£ */
  border-radius: 4px;   /* ¸ð¼­¸® µÕ±Û°Ô */
  border: 1px solid #ccc;
  background-color: #fff;
}
label, button {
  font-size: 1.0em;
}
button {
  display: block;
  margin-top: 16px;
  align-items: center;
}

.link {
  align-items: center;
  font-size: 1.2em;
}

/* ÇªÅÍ ÇÏ´Ü °íÁ¤ */
.footer {
  background-color: #f1f8e9;
  padding: 10px;
  text-align: center;
  font-size: 0.9em;
  color: #33691e;
}

footer a {
  color: #558b2f;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
