/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*{
	box-sizing: border-box;
}
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;
}




/* DR ———————————— */


body {
	background-color: #e4ff00;
	color:#ffffff;
	font-size: 11px;
	letter-spacing: 0.1em;
	line-height: 18px;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: subpixel-antialiased;	
	font-weight: 500;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color:#ffffff;
	/*border-bottom: dotted 1px #ffffff;*/
}

a:hover {
	cursor: pointer;
	/*color:#00ffff;*/
	/*border-color:#00ffff;*/
}

#wrapper {
	display: flex;
	height: 100%;
	/*justify-content: center;*/
}
#main{
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 100vw;
}

.main-title, .main-image, .main-tracklist{
	/*display: flex;*/
	width: 100%;
}
.main-title{
	margin-top: 29vh;
    text-align: center;
	/*display: flex;*/
}

.main-title img{
	width: 33%;
	height: auto;
	margin: 0 auto;
}
.main-image{
	margin-top: 8vh;
	text-align: center;
}

.main-image img{
	width: 75%;
	height: auto;
}


.main-tracklist{
	/*display: flex;*/
	text-align: center;
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
    margin-top: 9vh;
    margin-bottom: 12vh;
}
.main-tracklist img {
	width: 50%;
	height: auto;
	margin-right: 19vw;
}

@media screen and (max-width: 600px){
	.main-title img{
		width: 43%;
	}
	.main-image img{
		width: 90%;	
	}
	.main-image{
		margin-top: 4vh;
	}
	.main-tracklist{
	    margin-top: 4vh;
	    margin-bottom: 4vh;
	}
	.main-tracklist img{
		width: 75%;
		margin-right: auto;
	}
}