@import url("../../webfonts/Shellahera_Script/stylesheet.css");
b@import url("../../webfonts/Shellahera_Script/stylesheet.css");
/*
Here are some commonly used CSS class selectors which 
-class rules can applied to multiple elements on a page
-can be applied in any combination
*/
@font-face {/*instructions to browser where to find your custom font*/
    font-family: ShellaheraScriptDemo;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/ShellaheraScriptDemo.ttf);
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: customName2;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/filename2.ttf); 
}
* {
    box-sizing:border-box;/*This allows you to set and border width and padding but the div will retain its set width and set height*/
    margin: 0px;
    padding: 0px;
}
html, body {
	width: 100%;
	min-height: 100%;
	height: auto;
}
header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
    display:block;
    /*DON'T ADD anything else in this selector block - only this property should be in this CSS selector set*/
}
body {/*these are the 5 basic CSS properties and values to start a website*/
    font-family: Verdana, sans-serif;/*change this for your design*/
    font-size:100%;/*DON'T CHANGE THIS VALUE HERE - you can set font sizes in other selector styles*/
    margin:0px;/*removes default edges*/
    padding:0px;/*removes default settings*/
    z-index:0;/*stacking order - small numbers a below high numbers*/
}
#centeringDiv, .centeringDiv{
    max-width:980px;/*optimum width for both desktops, laptops, and tablets*/
    width:100%;/*allows the page to resize it's width to fit smaller devices*/
    height: auto;/*optimum height for both desktops, laptops, and tablets*/    
    margin:0 auto;/*0 = no margin for top and bottom and auto = same margin for left and right*/
    z-index:1;/*stacking order - small numbers a below high numbers*/
}
header, .header {
	padding: 10px;
	width: 100%;
	height: 300px;
	display: -webkit-flex;/*allows elements in nav to have flexible locations*/
	display: flex;/*allows elements in nav to have flexible locations*/
	align-items: center;/*vertically centers all elements in header for a single row of elements*/
	z-index: 920;/*stacking order - small numbers a below high numbers*/
	font-style: normal;
	font-family: "Shellahera Script";
}
nav {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	flex-direction: row;
	width: 100%;
	height: 100px;
	margin: 0 auto;
	background-image: -webkit-linear-gradient(270deg,rgba(115,227,145,1.00) 0%,rgba(176,228,183,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(115,227,145,1.00) 0%,rgba(176,228,183,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(115,227,145,1.00) 0%,rgba(176,228,183,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(115,227,145,1.00) 0%,rgba(176,228,183,1.00) 100%);
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9000;
	font-family: "Bodoni 72 Book";
}
.btn {
	z-index: 926;/*stacking order, bigger numbers are on top*/
	margin: auto;/*IMPORTANT! togther with btn justify-content will space out buttons automatically*/
	display: -webkit-flex;/*allows elements in btn to have flexible locations*/
	display: flex;/*allows elements in btn to have flexible locations*/
	justify-content: center;/*horizontally centers all elements in btn*/
	align-items: center;/*vertically centers all elements in btn for a single row of elements*/
	flex-direction: row;/*places all elements in btn in a row - other option is column*/
	flex-wrap: no-wrap;/*ensures that elements in btn do NOT wrap to a 2nd row*/
	font-family: "Bodoni 72 Book";
}
nav div {
	display: block;
}
nav a {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	position: relative;
	display: inline-block;
	color: #fff;
	text-decoration: none;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.5em;
}
/* Effect 4: bottom border enlarge */
.cl-effect-4 a {
	padding: 0 0 10px;
}

.cl-effect-4 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	content: '';
	opacity: 0;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	transform: translateY(-10px);
}

.cl-effect-4 a:hover::after,
.cl-effect-4 a:focus::after {
	height: 5px;
	opacity: 1;
	transform: translateY(0px);
}
article {/*used for the main content area*/
	clear: both;/*clears away and floating or text wrapping*/
	width: 100%;
	max-width: 1000px;
	min-height: 100vh;
	height: auto;
	padding: 10px;
	margin: 0 auto;
	z-index: 900;/*stacking order - below nav and .btn but above section*/
}
article h1 {
	text-align: center;
	font-size: 9em;
	font-family: ShellaheraScriptDemo;
	font-weight: lighter;
	color: rgba(255,255,255,1.00);
}
section {/*used for the main content area*/
	width: 100%;
	height: auto;/*clears away and floating or text wrapping*/
	z-index: 901;
	min-height: 100vh;
}
#section1 {
	margin-top: 60px;
}
#section1, #section3 {
	background-color: rgba(176,228,183,1.00);
}
#section2, #section4 {
	background-color: rgba(127,218,139,1.00);
}
article p {
    text-indent: 0rem;/*an rem is the size of a letter m relative to what's set in the body css rule*/
}
.screenshot {
	width: 100%;
	max-width: 1000px;
	height: auto;
}
footer {
	clear: both;/*clears away and floating or text wrapping*/
	text-align: center;
	font-size: 0.8rem;
	width: 100%;
	line-height: 1.2rem;/*This will help to vertically center the text */
	height: auto;
	z-index: 900;/*stacking order - below article, nav, and .btn*/
	padding-bottom: 5px;
}
/*===========Class rules to apply to multiple elements in the HTML===============================*/
figure, figure p, figcaption p {text-indent: 0px; text-align:center;}/*for any captions or paragraphs inside figure tags*/
figure img {width: 100%; height:auto;}/*forces image in figure to fit a specific figure width set with other CSS*/
.clearFloats {clear: both; width:100%; height:0px;}/*apply to div tags - clears away and floating or text wrapping*/

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	max-width: 853px;/*same width as video itself*/
	width: 100%;
	margin: 0 auto;/*centers the video*/
	z-index: 8000;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	max-width:853px;/*change as desired*/
	max-height:480px;/*if you change max-width, make sure the height has a ratio of 16:9*/
	width: 100%;
	height: 100%;
}
.floatRight {/*YOU MAY ALREADY HAVE THIS SO don't copy this in such a case*/
	float:right;
}
.floatLeft {/*YOU MAY ALREADY HAVE THIS so don't copy this in such a case*/
	float:left;
}
.wrap {
	-webkit-shape-margin:30rem;/*This determines how close you want the text to be to the image*/
	-moz-shape-margin:30rem;/*rem stands for root em - you are changing the size relative to the size of 1em of the body (root) css instead of relative to the font-size of the parent container*/
	-ms-shape-margin:30rem;
	-o-shape-margin:30rem;
	shape-margin:30rem;
}
#uniqueID {/*Repeat this blcok for all image you want text to wrap around*/
	-webkit-shape-outside: url("../images/bookThumbnail.png");/*IMPORTANT!!!! - the URL path is relative to the CSS file, NOT the html file*/
	-moz-shape-outside: url("../images/bookThumbnail.png");
	-ms-shape-outside: url("../images/bookThumbnail.png");
	-o-shape-outside: url("../images/bookThumbnail.png");
    shape-outside: url("../images/bookThumbnail.png");
}
.bioBox {
	width: calc(33% - 10px);
	height: 350px;
	position: relative;
	margin: 5px;
	padding: 5px;
	float: left;
	border: 1px solid #000;
	cursor: pointer;
	background-color: rgba(156,241,255,1.00);
}
.bioBox h1 {
	font-family: Verdana, sans-serif;
	font-size: 1.5rem;
	font-style: normal;
}
.bioPic {
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	position: relative;
}
.bioPic img {
	width: 100%;
	height: auto;
	position: relative;
	top: 0;
	left: 0;
	border-radius: 300px;
	opacity: 1;
	-webkit-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
}
.bioPic img:hover {
	-webkit-opacity: 0.5;
	opacity: 0.5;
}
#bioCloseX {
	position: fixed;
	top: 20px;
	right: -50vw;
	width: 60px;
	height: 30px;
	margin: 0;
	padding: 0;
	background-image: url(../images/closeX.svg);
	background-repeat: no-repeat;
	z-index: 100002;
	cursor: pointer;
}
.bioInfo {
	position: fixed;
	top: 0;
	right: -50vw;
	height: 100vh;
	width: 50vw;
	padding: 0;
	margin: 0;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 100001;
	background-color: rgba(0,0,0,1.00);

}
.bioInfoContent {
	width: 100%;
	min-height: 100vh;
	height: auto;
	position: relative;
}
.bioInfoTitle {
	font-size: 2em;
	text-align: center;
	position: relative;
	width: 100%;
	height: 100px;
	margin-top: 50vh;
	color: rgba(255,255,255,1.00);

}
.bioText {
	width: 100%;
	height: calc(50vh - 100px);
	padding: 10px 50px 80px;
	overflow-y: auto;
	color: rgba(230,230,230,1.00);
	position: relative;
}
.bioInterview {
	width: 50%;
	margin: 20px 25% 0;
	display: block;
	position: relative;
}
#bioInfo1 {
	background-image: url(../images/bio1bg.png);
}
#bioInfo2 {
	background-image: url(../images/bio2bg.png);
}
#bioInfo3 {
	background-image: url(../images/bio3bg.png);
}
#coverAll {
	width: 0vw;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	background-color: rgba(252,255,55,0.51);
	z-index: 100000;
	cursor:pointer;
}
#thumbnails {
    width:800px;
    height:800px;
    position:relative;
    top:0;
    margin:20px auto;
}
.btnBox {/*container for each thumbanil*/
	float: left;/*allows for reshuffling depending upon window size*/
	position: relative;
	overflow: hidden;
	background-image: url(../images/btnBoxBackground.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.btnBox, .btnBox figure img {
    width:200px;
    height:200px;
}
.btnBox figure  img{
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 40;
	cursor: pointer;
}
.btnHolder {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 50;
}
.boxHeader {
	text-align: center;
	font-weight: bold;
	font-size: 1.5em;
	margin-top: 15px;
	margin-bottom: 10px;
	display: none;
}
.boxText {
	width: 80%;
	height: 50%;
	margin:0 auto;
	font-size: 0.9em;
}
.btnView {
	width: 50%;
	margin: 10px auto;
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
	background-color: #000000;
	padding: 5px;
	color: #FFFF00;
}
.btnView a:link, .btnView a:visited {
	color: #FFFF00;/*text link color and when visited*/
	text-decoration: none;
}
.btnView a:hover, .btnView a:active {
	color: #FF6666;/*text hover color and when active or as mouse is pressed down*/
	text-decoration: none;
}
