@charset "UTF-8";

@font-face {
    font-family: 'PyeongChangPeace';
    src: url('../font/PyeongChangPeace/PyeongChangPeace-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'PyeongChangPeace';
    src: url('../font/PyeongChangPeace/PyeongChangPeace-Light.ttf') format('truetype');
    font-weight: lighter;
    font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ol, ul, li {
    list-style-type: none;
}

h1 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 15px;
}

h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    margin-bottom: 10px;
}

html, body {
	width: 100%;
	height: 100%;
	font-family: 'Nanum Gothic', sans-serif;
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	word-break: keep-all;
	overflow-x: hidden;
}

iframe {
	width: 85%;
    height: auto;
}

code {
	color: #eb5757;
	background: rgba(135, 131, 120, 0.15);
	border-radius: 3px;
	padding: 0.2em 0.4em;
	border-radius: 3px;
	font-size: 85%;
	tab-size: 2;
}

.page_landing_btn {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	border-radius: 10px;
}

/* Main styles */
main {
    position: relative;
    z-index: 1;
    /* top: 80px; */
}

main:not(#index main, #campaign_hunter main, #universe main) {
    top: 80px;
}

#popup_overlay1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

#popup_overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

#popup {
	position: relative;
	width: 95%;
	max-width: 95%;
}

#popup img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}
#popup_close1 {
    position: absolute;
	display: inline-block;
	padding: 20px;
    top: 10px;
    right: 15px;
	font-size: 24px;
    color: white;
    cursor: pointer;
	background-color: #ffffff99;
	color: #000;
    border: 0;
}
#popup_close2 {
    position: absolute;
	display: inline-block;
	padding: 10px;
    top: 10px;
    right: 15px;
	font-size: 24px;
    color: white;
    cursor: pointer;
	background-color: #ffffff99;
	color: #000;
    border: 0;
}

section {
    position: relative;
    z-index: 1;
}

#footer {
	position: relative;
    color: #fff;
}

.footer_box {
	position: relative;
	padding: 10px;
    background-color: #333;
}

.footer_info a:hover {
    color: #1db954;
}

footer:not(#index footer, #campaign_hunter footer, #universe footer) {
    top: 80px;
}

.hamburger {
	position: fixed;
	top: 25px;
	right: 15px;
	display: flex;
	cursor: pointer;
	flex-direction: column;
	gap: 6px;
	width: 30px;
	height: 25px;
	justify-content: center;
	align-items: center;
	z-index: 1100;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 3px;
	background: #333;
	transition: 0.3s;
	border-radius: 2px;
}

#menu_toggle {
	display: none;
}

.ad_banner {
	display: none;
}