/* going to need autoprefixer.github.io   OR   https://github.com/postcss/autoprefixer */
/*  HOW TO - https://youtu.be/qBvW8KC9bb4 
 aNd WHAT - http://autoprefixer.github.io/ */


/* PHOTOS - temp colors for checking */
.photo:nth-child(1){
	background-color: #E26FEC;
}
.photo:nth-child(2){
	background-color: #EC6FB8;
}
.photo:nth-child(3){
	background-color: #EC6F79;
}



/* -------------------------------------- */
/* CSS layout */
/* -------------------------------------- */

html{
	background-color: #000000;
}
body{
	background-color #000000;
	color: white;
}
a, a:visited, a:active {
	color: lightgrey;
	text-decoration: none;
}
a:hover {
	color: white;
	text-decoration: none;
}
img {
	width: 100%;
}
iframe{
	flex: 1;
	flex-basis: 300px;
}
h1 {
	margin: 0;
	font-size: 2em;
	font-family: Arial, Helvetica, sans-serif;
	color: lightgrey;
}
h2 {
	margin: 0;
	font-size: 1.6em;
	font-family: Arial, Helvetica, sans-serif;
	color: lightgrey;
}
h3 {
	margin: 0;
	font-size: 1.3em;
	font-family: Arial, Helvetica, sans-serif;
	color: lightgrey;
}
h4 {
	margin: 0;
	font-size: 1.1em;
	font-family: Arial, Helvetica, sans-serif;
	color: lightgrey;
}
.post-title{
	margin-bottom: .1em;
	font-size: 1em;
	font-weight: bold;
}
.post-info {
	margin-bottom: .1em;
	font-size: 0.8em;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;	
	color: grey;
}
.post-content{
	margin-top: 0.5em;
	font-size: .8em;
	font-family: Arial, Helvetica, sans-serif;
	color: lightgrey;
}
.article-parent{
	padding: .5em;
	flex-basis: 800px;	
	flex: 0 1;
	max-width: 800px;
	display: flex;
	flex-direction: column;         
}
.article-title{
	font-size: 3em;
	font-family: Arial, Helvetica, sans-serif;
	color: lightgrey;
}
.article-info {
	margin-bottom: .1em;
	font-size: 0.8em;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;	
	color: grey;
}
.article-content{
	margin-top: 0.5em;
	font-size: 1em;
	font-family: Arial, Helvetica, sans-serif;
	color: lightgrey;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.article-album-thumb{
	display: inline;
}
.page{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.parent{
	padding: .5em;
	height: auto;
	
	display: flex;
	flex-direction: row;         /** Default: row Other options: row-reverse, column, column-reverse **/
	flex-wrap: wrap;           /** Defalut: nowrap Other options: wrap, wrap-reverse **/
	justify-content: center; /** Defualt: flex-start Other options: flex-end, center, space-between, space-around NOTE: operates on the X-AXIS **/
	align-items: stretch;        /** Default: stretch, Other options:flex-end,center,stretch,baseline NOTE: operates on the Y-AXIS **/
	align-content: stretch;      /** Default: stretch, Others: ceneter, flex-start, flex-end,space-around, space-between NOTE: operates on the Y-AXIS **/
}

/* -------------------------------------- */
/* CHILD COLUMN 1 */
/* -------------------------------------- */
.child1{
	flex-basis: 300px;
	flex: 1.5;
	
	display: flex;
	flex-direction: column;	
}
.section-title{
  background-color: #000000;
  justify-content: center;
  font-size: 1.2em;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}
.banner{
	flex: 0 auto;
	margin-bottom: 1em;
	align-self: center;
	font-size: 1.8em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: white;
}
.intro-area{
	flex: 1;
	margin: .5em;
	background-color: navy;
	
	display: flex;
	flex-direction: column;
}
.intro-video{
	flex: 1;
	flex-basis: 300px;
}
.study-area{
	flex-basis: 200px;
	flex-grow: 1;
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;

}
.study{
	flex: 1 1; /* grow 1, shrink 0 */
	flex-basis: 180px;
	padding: 0.5em;
	margin: .5em;
	background-color: #171D27;
	display: flex;
	flex-wrap: wrap;
}
.study-img-box{
	width: 100%;
	justify-content: center;}

.study-img{
	height: auto;
	max-width: 150px;
	object-fit: contain;
	padding: .1em .5em;
	opacity: 0.8;
}

/* -------------------------------------- */
/* CHILD COLUMN 2 */
/* -------------------------------------- */
.child2{
	flex: 1;
	flex-basis: 300px;
	background-color: red;
	
	display: flex;
	justify-content: stretch;
}
.show-area{
	flex-grow: 1;
	background-color: #425970;
	
	display: flex;
	flex-direction: column;
}
.show{
	flex-grow: 1;
	padding: 0.5em;
/*	margin: 3px;  */
	background-color: #171D27;
	
	display: flex;
	flex-direction: column;
}
.show-img-box{
	max-width: 100%;
	height: auto;
	/* background-color: green; */
}
.show-img{
	flex-grow: 1;
	height: 120px;
	width: 100%;
	padding-bottom: .5em;
	object-fit: cover;
	opacity: 1;
	
	display: flex;
	justify-content: center;
}
.show-text{
	text-align: left;
}

/* -------------------------------------- */
/* CHILD COLUMN 3 */
/* -------------------------------------- */
.child3{
	flex: 1 1;
	flex-basis: 200px;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.bio-area{
	flex: 1;
	flex-basis: 100px;
	min-width: 20em;
	background-color: #1b252f;
	display: flex;
}
.bio{
	padding: 0.5em;
	margin: 0.5em;
	background-color: #3a4962;
	display: flex;
	flex-wrap: wrap;
}
.bio-img-box{
	width: 100%;
}
.bio-img{
	padding-bottom: .5em;
	filter: grayscale(100%);
}
.bio-text{
	flex: 1;
}
.muse-area{
	flex: 1;
	flex-basis: 100px;
	flex-direction: column;	
	min-width: 20em;
	background-color: #1b252f;

	display: flex;
	flex-direction: row;
	align-items: center;
}
.muse{
	flex: 1 1;
	padding: 0.5em;
	margin: 0.5em;
	flex-basis: 50px;
	background-color: #3a4962;

	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
.muse-img-box{
	flex: 1;
	flex-basis: 100px;
	padding: 0.5em;
}
.muse-img{
	flex: 1;
	max-width: 120px;
}
.muse-text{
	margin: 1em;
	flex: 1;
	flex-basis: 20em;
}
.gallery-area{
	flex: 1 1;
	flex-basis: 120px;
	min-width: 20em;
	margin: .5em;

	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}
/*
.gallery{
	flex-grow: 1;
	background-color: blue;
	
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
*/
.gallery-img-box{
	flex: auto;
	max-width: 60px;
	margin: .3em;
	display: flex;
	align-items: center; 
	justify-content: center; 
}
.gallery-img{
	object-fit: cover;
	height: 50px;
	width: 50px;
	
}

.page-info{
	font-size: .8em;
	color: grey;
	text-align: right;
}

/** Play with these properties: flex-shirnk, flex-grow,flex-basis Explore! 
    NOTE:The default order group is zero. **/

