@charset "UTF-8";
/* CSS Document */

/* Home Page Styles */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: Lato, sans-serif;
	/*font-size: calc(0.22rem + 1.1vmin);*/
	font-size: calc(16px + (26 - 16) * ((100vw - 300px) / (1600 - 300)));
}
a:link {
	color: #FFFFFF;
	text-decoration: none;
}
a:visited {
	color: #CCCCCC;
}
a:hover {
	color: #FF99CC;
}
a:active {
	color: #FF99FF;
}	

.menu-wrap .hamburger {
  background: rgba(02, 02, 02, 0.00);
}
.menu-wrap .menu > div {
  /* background: rgba(24, 39, 51 , 0.85); original */
  background: rgba(39, 32, 26 , 0.85);
  width: 200vw;
  height: 200vw;
}

#bg {
  position: fixed; 
  top: -50%; 
  left: -50%; 
  width: 200%; 
  height: 200%;
}
#bg img {
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  margin: auto; 
  min-width: 50%;
  min-height: 50%;
}
.logo {
	display: inline-block;
	width: 28vw;
	max-width: 330px;
	height: auto;
	margin: 1rem auto 2rem -1rem;
}
.wrapper {
	width: 78vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	/*border: 1px solid cyan;*/
}
.coverLink {
	display: inline-block;
}
.albumDiv {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	/*border: 1px solid red;*/
}
.coverDiv {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/*border: 1px solid yellow;*/
}
.coverSmall	{
	display: flex;
	width: 14vw;
	max-width: 192px;
	height: auto;
	margin: 0.5rem 1rem 2rem;
	/*border: 1px solid blue;*/
	transition: all 0.35s ease-in-out;
}
.coverSmall:hover {
	transform-origin: top left;
	transform: scale(1.05);
}
.recordName {
	display: flex;
	width: 13.5vw;
	max-width: 192px;
	height: auto;
	margin: 0 1rem;
	/*border: 1px solid green;*/
}
.bottomDiv {
	text-align: center;
	width: 80%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	/*border: 1px solid orange;*/
	}
.textPhiloR {
	font-weight: 400;
	white-space: nowrap;
	font-variant-ligatures: none;
	width: 100%;
	font-size: 1rem;
	letter-spacing: 2px;
	font-style: italic;
	margin: 5rem auto 0;
	}


/*	= = = = = = = = = =Smartphone Styles = = = = = = = = = =	*/

@media all and (max-width: 738px) and (orientation: portrait) {
body {
  font-size: 0.75rem;
	}
.showcase p {
  font-size: 0.6rem;
}
.menu-wrap .menu > div {
  width: 250vw;
  height: 250vw;
}
.wrapper {
	width: 78vw;
	}
.albumDiv {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 110%;
	margin-left: -1rem;
}
.logo {
	display: inline-block;
	width: 38vw;
	min-width: 200px;
	max-width: 250px;
	height: auto;
	text-align: left;
	margin: 0.4rem auto 0.8rem -1rem;
	}
.coverDiv {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	/*border: 1px solid yellow;*/
}
.coverSmall {
	/*display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;*/
	min-width: 111px;
	max-width: 250px;
	height: auto;
	margin: 0.5rem auto 0.5rem -7rem;
	}
.recordName {
	min-width: 45vw;
	max-width: 350px;
	height: auto;
	margin: 1rem 0 auto 0.5rem;
}
.bottomDiv {
	width: 100%;
	flex-direction: column;
	font-size: 0.5rem;
	margin-top: 1rem;
	}
.textPhiloR {
	font-size: 0.7rem;
	}



