/*RESET CSS*/
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: 10px;
	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;
}

/*--------------------------- real css beyond this point ---------------------------*/
body{
	height:100vh;
	width:100vw;
	margin:0;
	padding:0;
	background:#0e0b08;
	color:#aaa;
	font-family:Verdana, Geneva, sans-serif;
	display:flex;
}
#leftBox{
	height:100vh;
	width:25vw;
	margin:0;
	padding:0;
	background: url("images/leftCol_noBorder.png");
	display: flex;
    flex-direction: row;
}
.leftBoxContent{
	flex:1 1;
	display:flex;
	flex-direction:column;
}
.verticalBar{
	height:100vh;
	width:2vw;
	background: url("images/border_x.png");
}
#logo{
	width: 100%;
    height: auto;
    margin: 2vh auto;
}

.title{
    display: block;
    font-size: 3vw;
    text-align: center;
    color: #c7ac9c;
    mix-blend-mode: color-dodge;
    text-shadow: 0vw -0.5vh 0.5vh #d8ac69, 0vw 0.5vh 0.3vh #840303;
}
.subTitle {
    display: block;
    font-size: 3vw;
    text-align: center;
    color: #c7ac9c;
    mix-blend-mode: color-burn;
    text-shadow: 0px -5px 1rem #a9a9a9, 0px 5px 1rem #c7c7c7, -5px 0px 1rem #a9a9a9, 5px 0px 1rem #c7c7c7, 0 0 1.25vw #000000, 0vw -0.5vh 1px #000, 0vw 0.5vh 1px #000;
}

