/* ±âº» ¸®¼Â ½ºÅ¸ÀÏ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  font-size: 100%; /* ±âº» ÆùÆ® Å©±â¸¦ 16px·Î ¼³Á¤ */
  font-family: Arial, sans-serif; /* ±âº» ÆùÆ® */
  line-height: 1.5; /* °¡µ¶¼ºÀ» À§ÇÑ ÁÙ °£°Ý */
  color: #333; /* ÅØ½ºÆ® ±âº» »ö»ó */
  -webkit-font-smoothing: antialiased; /* ±Û²Ã ·»´õ¸µÀ» ºÎµå·´°Ô */
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%; /* ¹ÝÀÀÇü ÀÌ¹ÌÁö */
}

button, input, select, textarea {
  font: inherit; /* ÆùÆ® »ó¼Ó */
}

a {
  text-decoration: none; /* ¸µÅ©ÀÇ ¹ØÁÙ Á¦°Å */
  color: inherit; /* ¸µÅ© »ö»ó »ó¼Ó */
}

ul, ol {
  list-style: none; /* ¸®½ºÆ® ½ºÅ¸ÀÏ Á¦°Å */
}

table {
  border-collapse: collapse; /* Å×ÀÌºí Å×µÎ¸® Áßº¹ Á¦°Å */
  width: 100%; /* Å×ÀÌºí ³Êºñ ±âº» ¼³Á¤ */
}

fieldset {
  border: none; /* ÇÊµå¼Â Å×µÎ¸® Á¦°Å */
}

blockquote, q {
  quotes: none; /* ÀÎ¿ë±¸ µû¿ÈÇ¥ Á¦°Å */
}

button {
  background: none;
  border: none;
  cursor: pointer; /* ¹öÆ° ±âº» ¼³Á¤ */
}

hr {
  border: none;
  border-top: 1px solid #ddd; /* ¼öÆò¼± ½ºÅ¸ÀÏ */
}

address {
  font-style: normal; /* ÁÖ¼Ò ½ºÅ¸ÀÏ ±âº» ¼³Á¤ */
}
