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;
}

/* Type ------------------------------------------------------ */

@font-face {
  font-family: "Eclisse-Medium";
  src: url("font/Eclisse-Medium.woff") format('woff');
}

@font-face {
  font-family: "Eclisse-ExtraLight";
  src: url("font/Eclisse-ExtraLight.woff") format('woff');
}

.link {
	display: block;
}

.ss01 {
  font-feature-settings: "ss01" 1;
}

.ss03 {
  font-feature-settings: "ss03" 1;
}

.copy {
    font-size: 16px;
    line-height: 160%;
	font-family: "Eclisse-ExtraLight";
	letter-spacing: 2px;
}

.credits > p, .quotes > p {
	margin: 0 auto 4rem auto;
	max-width: 825px;
}

.title-large {
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
	letter-spacing: 5px;
}

.title-medium {
    font-size: 26px;
    line-height: 110%;
    text-transform: uppercase;
	letter-spacing: 8px;
}



/* Global Styles ------------------------------------------------------ */

body {
    background-color: #101A1B;
    color: #EC2024;
    text-align: center;
	font-family: "Eclisse-Medium";
}

a {
	color: #EC2024;
	text-decoration: none;
}

.orb {
	fill: #EC2024;
	max-width: 190px;
	transform-origin: center center;
}

#background {
	height: 100vh;
	width: 100vw;
	position: fixed;
	z-index: -100;
}

.hero-holder {
	height: calc(100vh - 110px);
}

.lyrics-holder, .credits, .quotes {
	margin: 0 35px 0px 35px;
}

.play-btn {
    display: inline-block;
    background-color: #EC2024;
    border-radius: 100%;
    padding: 22px;
    cursor: pointer;
    background-image: url('img/play.svg');
    background-size: 20px 20px;
    background-position: 13px 12px;
    background-repeat: no-repeat;
    border: 0;
}

.play-btn.paused {
    background-image: url('img/pause.svg');
    background-position: center center;
}

.play-btn:hover {
    background-color: #fff;
}

.play-btn:focus {
    outline: 2px solid #EC2024;
    outline-offset: 2px;
}

.play-btn:focus:not(:focus-visible) {
    outline: none;
}

.play-btn:focus-visible {
    outline: 2px solid #EC2024;
    outline-offset: 2px;
}

.trap {
	padding: 50px 35px 60px 35px;
	text-align: right;
}

.trap a {
	font-size: 16px;
	padding: 2px;
	text-transform: uppercase;
	border-bottom: 1px solid #EC2024;;
}

.trap a:hover {
	text-decoration: none;
	border-bottom: none;
}

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

/* XSVP ------------------------------------------------------ */
.hero .title-large {
	padding: 40px 0 0 0;
}

.song-holder {
	margin: 0 auto;
	gap: 30px;
	padding: 90px 0px;
}

.credits-holder {
	padding: 90px 0px;
}

.song {
	width: 80vw;	
}

.song img {
	padding: 40px 0px 30px 0px;
}

.song h2, .credits h2 {
	padding: 0px 0px 30px 0px;
}

.song p {
	padding: 0px 0px 60px 0px;
}




/* XLVP ------------------------------------------------------ */
@media only screen and (min-width: 800px) {
	.copy {
    	font-size: 21px;
	}

	.title-large {
    	font-size: 60px;
	}

	.title-medium {
    	font-size: 32px;
	}
	
	.orb {
		max-width: 250px;
	}

	.hero-holder {
		height: calc(100vh - 50px);
	}

	.song-holder {
		flex-direction: row;
		height: 80vh;
		width: 90vw;
	}

	.song {	
		flex-grow: 1;
		max-width: 550px;
	}

	.song img {
		padding: 60px 0px 20px 0px;
	}

	.trap {
		padding: 50px 60px 60px 0px;
	}
}

/* Accessibility ------------------------------------------------------ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
  visibility: hidden !important;
  pointer-events: none !important;
  /* display: none !important; */
}

