/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* END RESET */
html, body{
	/* height:100%;
	min-height: 100%; */
}
body{
	font-family: 'Open Sans', sans-serif;
	
}
div{
	box-sizing: border-box;
}
main{
	display:flex;
}
@media screen and (max-width:767px){
	main{
		flex-direction: column;
	}
}
a{
	color:#000;
	font-weight: 700;
}
.trademark{
	font-size:.6em;
	position: relative;
	top:-.5em;
}
.left{
	width:100%;
	flex-shrink: 1;
	/* background-image: url("paulkim.jpg"); */
	background-position: 50% 50%;
}
.left img{
	display:block;
	width:100%;
	height:auto;
	height:100%;
	object-fit: cover;
	object-position: 50% 50%;
}
@media screen and (max-width:767px){
	.left img{
		max-width: 500px;
		margin:0 auto;
	}
}
.right{
	padding:0 50px 30px;
	width:100%;
	/* flex-shrink: 0; */
	/* flex-basis: 500px; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width:767px){
	.right{
		padding:20px 30px 40px;
	}
}
.right-container{
	/* max-width: 500px; */
}
header{
	display: block;
	padding:20px;
}
h1{
	font-size:20px;
}
h1 a{
	text-decoration: none;
	color:#000000;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	font-size: 18px;
}
h2{
	font-size:60px;
	font-weight: 600;
	letter-spacing: -2px;
}
p{
	font-size:16px;
	margin-top:20px;
	line-height: 1.5;
}