/* ---- General Page Styling ---- */
@font-face {
	font-family: 'shlop';
	src: url('../fonts/shlop rg.ttf')
}
@font-face {
	font-family: 'betadance';
	src: url('../fonts/BETAD___.TTF')
}
@font-face {
	font-family: 'birdland aeroplane';
	src: url('../fonts/birdland aeroplane.ttf')
}
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
	box-sizing: border-box;
}
body {
    background-attachment: fixed;
	background-color: #91B912;
	background-image: url(../images/the-cramps-1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	color: #EC008C;
	font-family: betadance;
	font-size: 20px;

}
article {
	margin: 0 auto;
	max-width: 960px;
	width: 100%;
}
.container {
	margin: 0 auto;
	padding: 100px 0 20px;
	width: 100%;
}
.section {
    margin: 30px 0;
    transition: transform 1s, opacity 1s;
}
.section--hidden {
    opacity: 0;
    transform: translateY(8rem);
}
hr {
	box-shadow: 1px 1px 10px 10px rgba(148,185,18,0.9);
    color: #91B912;
	margin: 0 auto;
    width: 85%;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
button {
	background-color: transparent;
	border: none;
}

/* ---- Font and Text Styling ---- */
p {
	font-family: betadance;
	font-size: 24px;
	padding: 10px 0;
}
h1 {
	color: #91B912;
	font-family: shlop;
	font-size:120px;
    margin-bottom: 20px;
	text-align: center;
	text-shadow: 0 6px 1px rgba(148,185,18,0.1),
	0 0 5px rgba(148,185,18,0.1),
	0 1px 3px rgba(148,185,18,0.3),
	0 3px 5px rgba(148,185,18,0.2),
	0 5px 10px rgba(148,185,18,0.25),
	0 10px 10px rgba(148,185,18,0.2),
	0 20px 20px rgba(148,185,18,0.9);
}
h2 {
	font-size:28px;
	text-align: center;
}
h3 {
	text-align: center;
}
.modal h2 {
	margin-bottom: 5px;
}
.modal h3 {
    font-family: shlop;
}
.song-list h3 {
	text-align: left;
}
#siteTitle {
	position: absolute;
	text-indent: -9999px;
}

/* ---- List Styling ---- */
.albums {
	margin: 0 auto;
	max-width: 828px;
	padding: 10px;
	width: 100%;
}
.albums li {
	display: inline-block;
	list-style: none;
	margin: 5px auto;
	max-width: 400px;
	text-align: center;
	width: 100%;
}
.photos {
	margin: 0 auto;
	max-width: 828px;
	padding: 10px;
	width: 100%;
}
.photos li {
	display: inline-block;
	list-style: none;
	margin: 5px auto;
	max-width: 410px;
	text-align: center;
	width: 100%;
}
.nav {
	list-style: none;
}
.nav li {
	display: inline;
	padding: 0 10px;
}
.song-list li {
	margin-left: 25px;
}

/* ---- Links and Navigation ---- */
nav {
	background-color: rgba(148,185,18,0.9);
	padding: 20px;
	position: fixed;
	width: 100%;
}
.nav a {
	color: #6E0559;
	font-family: birdland aeroplane;
	font-size: 26px;
	text-decoration: none;
}
.nav a:hover {
	color:  #EC008C;
	text-shadow: 0 6px 1px rgba(148,185,18,0.1),
	0 0 5px rgba(236,0,140,0.1),
	0 1px 3px rgba(236,0,140,0.3),
	0 3px 5px rgba(236,0,140,0.2),
	0 5px 10px rgba(236,0,140,0.25),
	0 10px 10px rgba(236,0,140,0.2),
	0 20px 20px rgba(236,0,140,0.1);
}

/* ---- Image Styling ---- */
img.albums {
	width: 400px;
}
.crampslogo {
	width: 575px;
}

/* ---- Modal ---- */
.hidden {
	display: none;
}
.modal {
	background-color: rgba(148,185,18,0.9);
	box-shadow: 1px 1px 10px 10px rgba(148,185,18,0.9);
	border-radius: 5px;
	box-sizing: content-box;
	color: #6E0559;
	position: fixed;
	left: 50%;
	max-height: 80%;
	overflow-y: scroll;
	-ms-overflow-style: none;
	padding: 2rem 4rem;
  	scrollbar-width: none;
	transform: translate(-50%, -50%);
	top: 50%;
	width: 34%;
	z-index: 10;
}
.modal::-webkit-scrollbar {
	display: none;
}
.overlay {
	background-color: rgba(0, 0, 0, 0.6);
	filter: blur(3px);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5;
}
.close-modal {
	background: none;
	border: none;
	color: #6E0559;
	cursor: pointer;
	font-family: shlop;
	font-size: 3.5rem;
	position: absolute;
	right: 2rem;
	top: 1.2rem;
}

/* ---- Mobile Styling ---- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
	.container {
		max-width: 85%;
	}
	.albums li {
		max-width: 49%;
	}
	img.albums {
		height: 80%;
		width: 80%;
	}
	h2 {
		font-size: 25px;
	}
}

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) {
	.container {
		max-width: 85%;
	}
	.albums li {
		max-width: 49%;
	}
	img.albums {
		height: 80%;
		width: 80%;
	}
}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) {
	.container {
		max-width: 85%;
	}
	.crampslogo {
		max-width: 100%;
	}
	h1 {
		font-size: 80px;
	}
	img.albums {
		height: 80%;
		width: 80%;
	}
	h2 {
		font-size: 20px;
	}
}

@media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
	.container {
		max-width: 85%;
	}
	.crampslogo {
		max-width: 100%;
	}
	h1 {
		font-size: 80px;
	}
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
	.container {
		max-width: 85%;
	}
	.crampslogo {
		max-width: 100%;
	}
	h1 {
		font-size: 80px;
	}
	.albums li {
		max-width: 100%;
	}
	img.albums {
		height: 80%;
		width: 80%;
	}
}

/* Extras */
/*color:#91B912;
color:#538A0E;
color:#57001a;
color:#5e9619;
text-shadow: 0 1px 0 #ccc,
0 2px 0 #c9c9c9,
0 3px 0 #bbb,
0 4px 0 #b9b9b9,
0 5px 0 #aaa,
0 6px 1px rgba(0,0,0,.1),
0 0 5px rgba(0,0,0,.1),
0 1px 3px rgba(0,0,0,.3),
0 3px 5px rgba(0,0,0,.2),
0 5px 10px rgba(0,0,0,.25),
0 10px 10px rgba(0,0,0,.2),
0 20px 20px rgba(0,0,0,.15);
0 1px 0 #91B912,
0 2px 0 #91B912,
0 3px 0 #91B912,
0 4px 0 #91B912,
0 5px 0 #91B912,
*/
