@charset "UTF-8";


.grid-container {
	display: grid;
	grid-template-columns: repeat(2, 150px);
	grid-gap: 64px;
	justify-content: center;
	padding-bottom: 20px;
	/*box-sizing: border-box;*/
	user-select: none; /* disable ability to select text */
	cursor: default;
}

.grid-item {
	width: 150px;
	height: 150px;
	background-color: #222;
	color: ;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid #333;
	padding: 8px;
	text-align: center;
	font-size: 0.75em;
	box-shadow: 0 0 50px 20px rgba(135,206,250, 0.0), inset 0 0 15px 3px rgba(135,206,250, 0.0);
	box-sizing: border-box;
	transition: border-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out, color 0.4s ease-in-out, text-shadow  0.4s ease-in-out;
}


.grid-item:hover {
	border: 1px solid royalblue;
	box-shadow: 0 0 50px 20px rgba(135,206,250, 0.3), inset 0 0 15px 3px rgba(135,206,250, 0.3);
	color: lightskyblue;
	text-shadow: none;
}


.albumCoverText {
	color: #fff;
	font-style: bold;
	/*font-weight: 900;*/
	font-size: 125%;
	letter-spacing: 4px;
	text-shadow: 0 0 30px #ffffff;
}

.albumTitle {
	text-align: center;
	font-weight: bold;
	font-size: 1em;
	margin-top: 5px;
	color: lightskyblue;	
}

.songCount {
	text-align: center;
	font-size: 0.75em;
	color: grey;
	/*margin-top: 0px;*/
}

.subtitle {
	letter-spacing: 4px;
	text-transform: uppercase;
}

.subtitle2 {
	color: #777;
	max-width: 80%;
	font-size: 80% !important;
	font-style: italic;
	margin-top: 1rem;
}

.currentStatus {
	background-color: #12121290;
	border: 2px solid #222222;
	border-radius: 50px;
	padding: 3rem 4rem 4rem 4rem;
	margin: 0 auto;
}

.currentStatus p {
	color: grey;
	text-align: justify;
}

.currentStatus h1 {
	color: #333;
	text-align: center;
}

.albumStatus {
	color: #333;
	font-size: 80% !important;
	font-style: italic;
	text-align: center;
}

.currentWorld {
	color: lightskyblue;
	font-weight: bold;
}

.explorations {
  text-align: justify;
  margin: 0 auto;
  margin-top: 2rem;
  max-width: 750px;
  padding: 0px 32px;
  max-width: 90%;
}

.explore-origins-container {
  background-color: #12121290;
  border: 2px solid #222222;
  border-radius: 50px;
  padding: 2rem;
  margin-top: 2rem !important;
  /*max-width: 80%;*/
  margin: 0 auto;
  margin-bottom: 4rem;
}

.explore-origins-container h1 {
  text-align: center;
}

.explore-origins-container p {
  text-align: center !important;
  font-style: italic;
  color: grey;
  font-size: 1.5rem;
  max-width: 80%;
}

.titleDivider {
	max-width: 90%;
	border: none;
	height: 1px;
	background: #222;
	box-shadow: 0 0 8px rgba(0, 210, 255, 0.9);
	margin: 0 auto;
	margin-top: 1.5rem;

}

/************************************************************************/
/**************************** MEDIA QUERIES *****************************/
/************************************************************************/

@media (min-width: 576px) {  

}

@media (min-width: 768px) {  
	.grid-container {
		grid-template-columns: repeat(4, 150px);
	}
	.subtitle {
		letter-spacing: 10px;
	}

	.subtitle2 {
		color: #777;
		max-width: 75%;
		font-size: 90% !important;
		font-style: italic;
		margin-top: 1rem;
	}

	.titleDivider {
		max-width: 75%;
		border: none;
		height: 2px;
		background: #222;
		box-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
		margin: 0 auto;
		margin-top: 1.5rem;
	}
}

@media (min-width: 992px) { 

}

@media (min-width: 1200px) {  

}

@media (min-width: 1920px) {


}