body{
	background-color: #EEEEC6;
	height: 100%;
	width: 100%; 
	margin: 0;
}

h1{
	color: #6479B7;
}

a {
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	z-index: 0;
}

h2 {
	font-family: 'Bungee', sans-serif;
	font-size: 14px;
	font-weight: 100;
	text-align: center;
	position: absolute;
	top: 36%;
    left: 20%;
    color: #EEEEC6;
    z-index: 1;
    width: 250px;
    height: 30px;
    padding-top: 16px;
    background-color: #6479B7;
    pointer-events: none;
}

div {
	box-sizing: border-box;
	padding: 15px;
	background-color: #6479B7;
	border:1px solid #6479B7;
	width: 400px;
	height: 250px;
}

#name {
	border: none;
	background:none;
	padding: 0px;
	position: absolute;
	left: 18%;
	top:12%;
	width: 300px;
	height: 300px; 
}

#lyrics {
	position: absolute;
	right: 20%;
	top: 8%;
}

#lyrics a{
	filter: opacity(40%);
	background-image: url("../images/lyrics.png");
	background-size: 130%;
	background-position: center top;
}

#microsite {
	position: absolute;
	right: 20%;
	top: 48%;
}

#microsite a{
	filter: opacity(40%);
	background-image: url("../images/microsite.png");
	background-size: cover;
	background-position: center;
}

#animatic {
	position: absolute;
	left: 18%;
	top: 48%;
}

#animatic a{
	filter: opacity(40%);
	background-image: url("../images/animatic.png");
	background-size: 100%;
	background-position: center top;
}

a {
	z-index: 2;
	filter: none;
}

#animatic h2 {
	left: 30%;
	width: 160px;
}

.marquee {
	font-family: 'Bungee', sans-serif;
	position: absolute;
	top: 85%;
	right: 20%;
	color: #6479B7;
	font-weight: 400;
	text-transform: lowercase;
    width: 62%;
    line-height: 50px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    0%   { transform: translate(0%, 0); }
    100% { transform: translate(-100%, 0); }
}