@charset "UTF-8";
*,
*::after,
*::before {
	box-sizing: border-box;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	user-select:none;
}
html {
    background-color: #121212;
    font-family: 'Noto Sans', 'Noto Sans KR', sans-serif;
}

body {
    font-family: 'Noto Sans', 'Noto Sans KR', sans-serif;
    min-height: 100vh;
    margin: 0;
    color: #ffffff;
    color: var(--color-text);
    background-color: #121212;
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Color schemes */
.body-project {
    --color-text: #ffffff;
	--color-background: #121212;
	--color-link: #515152;
	--color-link-hover: #ffffff;
	overflow:hidden;
}
.body-about {
    --color-text: #ffffff;
	--color-background: #121212;
	--color-link: #515152;
	--color-link-hover: #ffffff;
	-ms-overflow-style: none; 
    scrollbar-width: none; 
}
.body-about::-webkit-scrollbar {
    display: none;
}
.body-about_white {
    --color-text: #121212 !important;
    --color-background: #ffffff !important;
}

.content {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	min-height: 100vh;
	margin: 0 5%;
    padding: 2em 3em;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.content-fixed {
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	display: grid;
    align-content: space-between;
    width: 90%;
	max-width: none;
	height: 100vh;
	grid-template-columns: 50% 50%;
	grid-template-rows: auto auto 3em;
	grid-template-areas: 
	'header menu'
	'... ...'
	'... ...';
}

/* Header */
.main-header {
	position: relative;
	z-index: 50;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	align-items: center;
	align-self: start;
	grid-area: header;
	justify-self: start;
}

.main-header_title {
	font-size: 2em;
	font-weight: bold;
	margin: 0;
    padding: 0.75em 0;
	cursor: pointer;
}

/* Common styles for the menus */
.menu {
	position: relative;
    z-index: 10;
    text-align: right;
    grid-area: menu;
}

.menu_item {
	line-height: 1;
	position: relative;
	display: inline-block;
	margin: 1em 0;
	outline: none;
}

.menu_item-name {
	position: relative;
	display: inline-block;
}

.menu_item-name {
	font-size: 1.25em;
}

/* Common Content Style */
.top-section {
    width: 100%;
    height: 11vh;
}
.title-comment {
    width: 100%;
    height: 20vh;
    font-size: 1.2em;
}

table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
}

.link_style {
    position: absolute;
    color: #2889c2;
    text-decoration: none;
    z-index: 100;
}

@media screen and (max-width: 992px) {

}