@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols+2&display=swap');

body {
    margin: 0;
    padding: 0;
	height: 100%;
    font-family: "Google Sans Code", "Gulim", AppleGothic, sans-serif;
    font-size: 14px;
    letter-spacing: -0.4px;
    line-height: 24px;
	overflow: hidden;
}
.menu_text {
    padding-left: 30px;
}
header {
	position: fixed;
	top: 0;
	z-index: 1;
}
header a {
    font-family: "Noto Sans Symbols 2", "Google Sans Code", "Gulim", AppleGothic, sans-serif;
    color: #00000050;
    text-decoration-line: none;
}
a {
	font-family: "Google Sans Code", "Gulim", AppleGothic, sans-serif;
	color: #00000050;
    text-decoration-line: none;
}
a:hover {
    text-decoration-line: underline;
    color: black;
}
#pillBed {
	position: fixed;
	overflow: hidden;
	left: 0;
	right: 0;
	height: 80vh;
	bottom: 20vh;
	box-sizing: border-box;
	border: none;
	z-index: 50;
	pointer-events: none;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
#pillBed::-webkit-scrollbar {
	display: none;
}
#stoneLayer {
	position: absolute;
	overflow: hidden;
	width: 100%;
	min-height: 100%;
	z-index: -100;
}
#pillBed .pill {
	pointer-events: auto;
}
.pill {
	position: absolute;
	border: 0.7px solid black;
	color: black;
	background-color: rgb(233, 233, 233);
	border-radius: 50%;
	padding: 6px;
	font-family: "Google Sans Code", "Gulim", AppleGothic, sans-serif;
	text-align: center;
	font-size: 0.7em;
	width: 40px;
	height: 30px;
	cursor: pointer;
	user-select: none;
	white-space: nowrap;
}
.pill.isActive {
	background-color: rgb(233, 233, 233);
	color: rgb(0, 0, 0);
	border: 0.7px solid rgb(0, 0, 0);
	visibility: visible;
	opacity: 1;
}
.pill.isDimmed {
    background-color: rgba(255, 255, 255, 0);
	color: rgba(0, 0, 0, 0);
	border: 0.7px dashed rgb(0, 0, 0);
	visibility: visible;
}
#content {
	position: absolute;
	top: 10vh;
    font-family: "Google Sans Code", "Gulim", AppleGothic, sans-serif;
	z-index: 10;
	display: block;
	text-align: justify;
    white-space: pre-wrap;
}
#content img {
	max-width: 70%;
}
#post {
	white-space: normal;
	overflow-y: scroll;
}
#post p {
	text-indent: 30px;
	margin: 0;
	padding-bottom: 15px;
}
#postTitle {
    text-align: left;
	text-decoration: underline;
	padding-left: 30px;
	margin: 0;
}
#postDate {
	font-size: 0.8em;
    text-align: left;
	margin: 0;
}
.inmore {
	text-indent: none;
	padding-left: 100px;
}