*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
}

html {
	width: 100%;
	height: 100%;
  word-break: break-all;
}

body {
	top: 0;
	left: 0;
	margin: 0; 
	padding: 3em;
	width: 60%;
	height: 100%;
	font-size: 9pt;
	text-decoration: none;
	color: black;
	background-color: white;
	font-family: "Google Sans", "Noto Sans KR", Sans, Sans-serif;
	word-break: keep-all;
	line-height: 1.8;
}

::-webkit-scrollbar {
  width: 12px; /* 스크롤바의 너비 설정 */
}

::-webkit-scrollbar-thumb {
  background-color: transparent; /* 스크롤바 썸의 색상을 투명하게 설정 */
}

::-webkit-scrollbar-track {
  background-color: transparent; /* 트랙의 색상을 투명하게 설정 */
}


div {
	margin-bottom:1rem;
}

/*제목*/ h1 { font-style: bold; font-size: 1.1rem; }
/*저자명*/ h2 { font-style: none; font-weight: normal; font-size: 1.1rem; }
/*소개, 인용*/ h3 { font-weight: normal; padding-left: 2rem; margin-top: 1rem; margin-bottom: 1.5rem; }
/*소제목*/ h4 { font-weight: bold; }
/*각주 번호*/ sup { font-size: 0.6rem; font-weight: bold; color: red; text-decoration-line: underline; }
}

/*링크*/
a {
	color: blue;
	text-decoration: none;
}
a:link {
	color: blue;
	text-decoration: none;
}
a:visited {
	color: blue;
	text-decoration: none;
}


@media screen and (max-width: 500px) {
body {
	top: 0;
	left: 0;
	margin: 0; 
	padding: 1em;
	width: 90%;
	height: 100%;
	font-size: 9pt;
	text-decoration: none;
	color: black;
	background-color: white;
	font-family: "Google Sans", "Noto Sans KR", Sans, Sans-serif;
	word-break: keep-all;
	line-height: 1.8;
}
}