*{
	margin: 0;
	padding: 0;
}

html *{
	font-family: 'Gaegu', cursive;
}

html, body{
	height: 100%;
}

.bg {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

    /* The image used */
    background-image: url("jbk.jpg");

    /* Full height */
    height: 100%; 
    /* width: 100%; */

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 300px black;
}

#webaddress {
	position: fixed;
	/* top: 10px; */
	/* right: 10px; */
	left: 10px;
	bottom: 10px;
	font-family: serif;
	color: white;
	font-size: 16px;
}

.bg h1{
	color: white;
	font-size: 48px;
	z-index: 1;
}

#english {
	position: fixed;
	top: 11%;
	left: 12%;
}

#korean {
	position: fixed;
	top: 76%;
	right: 12%;
}

#sig {
	position: fixed;
	right: 12%;
	top: 83%;
	font-size: 24px;
}

.frame{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	height: 80%;
	border: 5px white;
	border-style: double;
	background-color: black;
	opacity: .7;
	animation: fadein 3s;
}

.frame p{
	line-height: 1.5;
	font-size: 24px;
	text-align: center;
	width: 70%;
	color: white;
}

.frame h2{
	cursor: pointer;
	position: fixed;
	top: 33%;
	right: 20%;
	color: white;
}


@media screen and (max-width: 1000px) {
	
	.frame{
		margin-top: -10%;
		width: 80%;
		height: 55%;
	}

	.frame h2{
		top: 21%;
		right: 15%;
	}

	#english {
		top: 9%;
		left: 5%;
	}

	#korean{
		top: 74%;
		right: 10%;
	}

	#sig {
		top: 81%;
		right: 10%;
	}

}

@media screen and (max-width: 700px) {
	.frame p{
		line-height: 1;
		text-align: center;
		width: 70%;
		color: white;
	}
	
	.frame{
		margin-top: 0;
		width: 80%;
		height: 55%;
	}

	.frame h2{
		top: 22%;
		right: 15%;
	}

	#english {
		top: 10%;
	}

	#korean {
		top: 77%;
	}

	#sig{
		top: 88%;
	}

}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: .7; }
}