@charset "utf-8";
/* CSS Document */
/*---------------------------------------------------------------------*/
/*-------------------		To remove			-------------------*/
/*---------------------------------------------------------------------*/
.mainContent{
	height: 100%;
	width: 100%;
}
/*---------------------------------------------------------------------*/
/*-------------------		BODY background			-------------------*/
/*---------------------------------------------------------------------*/
.st0{
	
	width: 100%; /*make the background fullscreen*/
	height: 100%; /*make the background fullscreen*/
	margin: 0; /*make the background fullscreen*/
	
/*REMEMBER* -webkit- -moz-*/	

	background: linear-gradient(120deg,transparent,5%, rgb(0, 0, 0), 90%, transparent); /*black gradient*/

	background-attachment: fixed; /*make the background fullscreen and not fullpage size*/
	
	animation: Gradient 15s ease infinite; /*Colour animation for 15 s changing infinately*/
}

/*Transition between background-colour, which is layered behind the linear gradient*/
	
/*REMEMBER* -webkit- -moz-	
@-webkit-keyframes Gradient {
							0% {
								background-color: rgb(46, 225, 231);
							}
							17% {
								background-color:  rgb(104,88,178);
							}
							37% {
								background-color:  rgb(144,1,245);
							}
							49% {
								background-color: rgb(254,0,234);
							}
							66% {
								background-color:  rgb(144,1,245);
							}
							82% {
								background-color:  rgb(104,88,178);
							}
							100% {
								background-color: rgb(46, 225, 231);
							}	
						}	
@-moz-keyframes Gradient {
							0% {
								background-color: rgb(46, 225, 231);
							}
							17% {
								background-color:  rgb(104,88,178);
							}
							37% {
								background-color:  rgb(144,1,245);
							}
							49% {
								background-color: rgb(254,0,234);
							}
							66% {
								background-color:  rgb(144,1,245);
							}
							82% {
								background-color:  rgb(104,88,178);
							}
							100% {
								background-color: rgb(46, 225, 231);
							}	
						}
*/
@keyframes Gradient {
							0% {
								background-color: rgb(46, 225, 231);
							}
							17% {
								background-color:  rgb(104,88,178);
							}
							37% {
								background-color:  rgb(144,1,245);
							}
							49% {
								background-color: rgb(254,0,234);
							}
							66% {
								background-color:  rgb(144,1,245);
							}
							82% {
								background-color:  rgb(104,88,178);
							}
							100% {
								background-color: rgb(46, 225, 231);
							}	
						}

/*---------------------------------------------------------------------*/
/*-------------------		FONTs - all pages 		-------------------*/
/*---------------------------------------------------------------------*/
h1 {
    font-family: 'Roboto', sans-serif;
	color: white;
	/*google font link*/
	text-transform: uppercase;
	font-weight: lighter;
	text-align: center;
	margin: 0;
}
p {
    font-family: 'Lato', sans-serif;
	color: white;
	font-size: 12pt;
}
a {
    font-family: 'Lato', sans-serif;
	color: white;	
}
h3{
	font-family: 'Lato', sans-serif;
	color: white;	
	
}
h2{
	font-family: 'Roboto', sans-serif;
	color: white;
	text-align: left;
	text-transform: uppercase;
	font-weight: lighter;
	margin-top: 2px;
}

/*---------------------------------------------------------------------*/
/*-------------------		FONTs - why?? find 		-------------------*/
/*---------------------------------------------------------------------*/
.selection a{
	font-family: 'Lato', sans-serif;
	color: white;
	text-align: center;
	margin-top: 2px;
	padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
	text-transform: uppercase;} 
.ihr{
	width: 30px;

	height: 10px;
	background-color:#FFFFFF;
	opcaity: 0.5;
	border: none;
	margin: 0px 0;
	border-radius:7px; 
}
/*---------------------------------------------------------------------*/
/*-------------------		SPACING  				-------------------*/
/*---------------------------------------------------------------------*/
.textcenter{
	display: flex;
	text-align: center;
	justify-content: center;
	align-content: center;
	align-self: center;
	margin: 0 auto;
}
.spacerBig{
	height: 50px;
}

/*---------------------------------------------------------------------*/
/*-------------------		LOGO   					-------------------*/
/*---------------------------------------------------------------------*/
	.logo {
		display: flex;
		justify-content: center;
	}
	.logo img{
		display: block;
		margin: 50px auto;
		width: 30%;
	}
/*---------------------------------------------------------------------*/
/*------------------- 		NAVBAR 					-------------------*/
/*-------------------top and bottomborder plus styling	-------------------*/
header{
	margin: 0 auto; 
}
.links {
	border-top-style: solid;
	border-top-color:#CACACA; 
	border-top-width: 1px;
	border-bottom-style: solid;
    border-bottom-color: #CACACA;
    border-bottom-width: 1px;
	width: 80%;
	overflow: hidden;
	display: flex;
		justify-content: center;
	align-self: center;
	box-shadow: 0 0 32px #0003;
}
.links > a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
	text-transform: uppercase;
	
	transition: all .5s;
}
.active {
	animation: Gradient 15s ease infinite;
  /*background: linear-gradient(180deg,transparent,5%, rgb(0, 0, 0), 90%, transparent);*/
	background: linear-gradient(180deg,rgb(0, 0, 0, 0.3), 80%, transparent);
}
.links > a:hover {
  background-image: linear-gradient(to top, rgba(255,255,255,0), , rgba(255,255,255,8));
	
}
.links > .line {
	height: 3px;
	pointer-events: none;
	animation: Gradient 15s ease infinite;
}

/*The animation */

.links {
	display: grid;
	grid-template-columns: repeat(var(--items), 1fr);
	position: relative;
}
.links > .line {
	opacity: 0;
	transition: all .5s;
	position: absolute;
	bottom: 0;
	
	left: var(--left, calc(100% / var(--items) * (var(--index) - 1)));
	width: var(--width, calc(100% / var(--items)));
	--index: 0;
}

.links > a:hover ~ .line {
	opacity: 1;
}

.links > a:nth-of-type(1):hover ~ .line { --index: 1; }
.links > a:nth-of-type(2):hover ~ .line { --index: 2; }
.links > a:nth-of-type(3):hover ~ .line { --index: 3; }
.links > a:nth-of-type(4):hover ~ .line { --index: 4; }
.links > a:nth-of-type(5):hover ~ .line { --index: 5; }
.links > a:nth-of-type(6):hover ~ .line { --index: 6; }
.links > a:nth-of-type(7):hover ~ .line { --index: 7; }
.links > a:nth-of-type(8):hover ~ .line { --index: 8; }
.links > a:nth-of-type(9):hover ~ .line { --index: 9; }
.links > a:nth-of-type(10):hover ~ .line { --index: 10; }
.links > a:last-of-type:hover ~ .line { --index: var(--items); }

/*---------------------------------------------------------------------*/
/*-------------------		FIND ME MENU   			-------------------*/
/*---------------------------------------------------------------------*/
.menu {
text-transform: uppercase;

display: inline-block;
cursor: pointer;
pointer-events: none;
position: fixed;
bottom: 20px;
left: 20px;
	
	font-family: 'Lato', sans-serif;
	color: white;
	font-size: 12pt;
}
.menu:hover {
pointer-events: all;
}
.label {
display: inline-block;
cursor: pointer;
pointer-events: all;
}
.spacer {
display: inline-block;
width: 80px;
vertical-align: middle;
cursor: pointer;
position: relative;
	margin: 0px 15px 6px 15px;
}
.spacer:before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #ffffff;
  height: 1px;
  width: 0%;
  transition: width 0.25s ease;
  transition-delay: 0.7s;
}
.item {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  top: 10px;
  opacity: 0;
  transition: opacity 0.5s ease, top 0.5s ease;
  transition-delay: 0;
}
span {
  transition: color 0.5s ease;
}
.item:hover span {
  color: #ff0000;
}
.menu:hover .spacer:before {
  width: 100%;
  transition-delay: 0s;
}
.menu:hover .item {
  opacity: 1;
  top: 0px;
}
.item:nth-child(1) {
  transition-delay: 0.45s;
}
.item:nth-child(2) {
  transition-delay: 0.4s;
}
.item:nth-child(3) {
  transition-delay: 0.35s;
}
.item:nth-child(4) {
  transition-delay: 0.3s;
}
.item:nth-child(5) {
  transition-delay: 0.25s;
}
.item:nth-child(6) {
  transition-delay: 0.2s;
}
.item:nth-child(7) {
  transition-delay: 0.15s;
}
.item:nth-child(8) {
  transition-delay: 0.1s;
}
.item:nth-child(9) {
  transition-delay: 0.05s;
}
.item:nth-child(10) {
  transition-delay: 0s;
}
.menu:hover .item:nth-child(1) {
  transition-delay: 0.25s;
}
.menu:hover .item:nth-child(2) {
  transition-delay: 0.3s;
}
.menu:hover .item:nth-child(3) {
  transition-delay: 0.35s;
}
.menu:hover .item:nth-child(4) {
  transition-delay: 0.4s;
}
.menu:hover .item:nth-child(5) {
  transition-delay: 0.45s;
}
.menu:hover .item:nth-child(6) {
  transition-delay: 0.5s;
}
.menu:hover .item:nth-child(7) {
  transition-delay: 0.55s;
}
.menu:hover .item:nth-child(8) {
  transition-delay: 0.6s;
}
.menu:hover .item:nth-child(9) {
  transition-delay: 0.65s;
}
.menu:hover .item:nth-child(10) {
  transition-delay: 0.7s;
}

/*---------------------------------------------------------------------*/
/*------------------- 		ABOUT container 		-------------------*/
/*-------------------								-------------------*/
.AboutContainer{
	display: flex;
  	flex-wrap: wrap;
	
	overflow: hidden;
	justify-content: center;
	 align-items: center;
	flex-direction: column;
}
.aboutImage{
	-webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
	width:195px;
	height: 195px;
	background-color: blue;
	margin: 2.5px auto;
	background-image: url("Media/IMG-20180516-WA0001.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.aboutBorder{
		-webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
	width:200px;
	height: 200px;
	background-color: white;
	display: flex;
	
}
.aboutText {
	width: 60%;

}
.aboutText h1{
	
	text-align: center;
}
.aboutText p{
	margin: 0;
	text-align: center;
}
/*---------------------------------------------------------------------*/
/*------------------- 		ABOUT skills bars		-------------------*/
/*-------------------								-------------------*/
.SkillsContainer{
	display: flex;
  	flex-wrap: wrap;
	
	overflow: hidden;
	justify-content: center;
	 align-items: center;
	flex-direction: column;
}
.HalfSkill{
	display: flex;
flex-direction: row;
	width: 70%;
}
.skill{
	display: flex;
	width: 50%;
	padding: 20px;
	justify-content: center;	
	flex-direction: column;
	margin: 0 auto;
}
.Row{
	display: flex;
	flex-direction: column;
	
	justify-content: flex-start;
}
.border{
	width: 100%;
	border: 1px solid white;
	border-radius: 4px;
}
.expand{
	display: flex;
	justify-content: flex-start;
	
	height: 15px;
	
}
.color{
	height: inherit;
	width: 100%;
	animation: Gradient 15s ease infinite;
}
/*-------------------		DESIGN SKILL					-------------------*/
.design{
	width: 70%;
	 animation:design 2s ease-out;
	-moz-animation:design 2s ease-out;
	-webkit-animation:design 2s ease-out;
	
}
/*-------------------		HTML SKILL						-------------------*/
.html {
	width: 75%;
	 animation:html 2s ease-out;
	-moz-animation:html 2s ease-out;
	-webkit-animation:html 2s ease-out;

}
/*-------------------		CSS SKILL						-------------------*/
.css{
		width: 65%;
	 animation:css 2s ease-out;
	-moz-animation:css 2s ease-out;
	-webkit-animation:css 2s ease-out;

}
/*-------------------		ILLUSTRATOR SKILL				-------------------*/
.illustrator{
	width: 75%;
	 animation:illustrator 2s ease-out;
	-moz-animation:illustrator 2s ease-out;
	-webkit-animation:illustrator 2s ease-out;

}
/*-------------------		DREAMWEAVER SKILL				-------------------*/
.dreamweaver{
	width: 75%;
	 animation:dreamweaver 2s ease-out;
	-moz-animation:dreamweaver 2s ease-out;
	-webkit-animation:dreamweaver 2s ease-out;
}
/*-------------------		DREAMWEAVER SKILL				-------------------*/
.photoshop{
	width: 40%;
	 animation:photoshop 2s ease-out;
	-moz-animation:photoshop 2s ease-out;
	-webkit-animation:photoshop 2s ease-out;
}
.WordPress{
	width: 45%;
	 animation:WordPress 2s ease-out;
	-moz-animation:WordPress 2s ease-out;
	-webkit-animation:WordPress 2s ease-out;
}
.Icon{
	width: 90%;
	 animation:Icon 2s ease-out;
	-moz-animation:Icon 2s ease-out;
	-webkit-animation:Icon 2s ease-out;
}
.Premiere{
	width: 25%;
	 animation:Premiere 2s ease-out;
	-moz-animation:Premiere 2s ease-out;
	-webkit-animation:Premiere 2s ease-out;
}
.XD{
	width: 55%;
	 animation:XD 2s ease-out;
	-moz-animation:XD 2s ease-out;
	-webkit-animation:XD 2s ease-out;
}
/*-------------------		All KEYFRAMES					-------------------*/
@keyframes design {
		0%  { width:0;} 
		100%{ width:70%;}  
}
@keyframes html {
		0%  { width:0;} 
		100%{ widows: 75%;}  
}
@keyframes css {
		0%  { width:0;} 
		100%{ width:65%;}  
}
@keyframes illustrator {
		0%  { width:0;}
		100%{ width:75%;}  
}
@keyframes dreamweaver {
		0%  { width:0;}
		100%{ width:75%;}  
}

@keyframes photoshop {
		0%  { width:0;}
		100%{ width:40%;}  
}
@keyframes WordPress {
		0%  { width:0;}
		100%{ width:45%;}  
}
@keyframes Icon {
		0%  { width:0;}
		100%{ width:90%;}  
}
@keyframes Premiere {
		0%  { width:0;}
		100%{ width:25%;}  
}
@keyframes XD {
		0%  { width:0;}
		100%{ width:55%;}  
}

/*---------------------------------------------------------------------*/
/*------------------- 		Portfolio				-------------------*/
/*-------------------								-------------------*/
.Projects{
	display: flex;
	flex-direction: column;
	justify-content: center;
	justify-self: center;
}
.ProjectButtons{
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.btn{
	height: 60px;
	width: 15%;
  border: none;
  color: white;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
	animation: Gradient 15s ease infinite;
}
.btn:hover{
	opacity: 0.6;
}

.projectsRow{
	display: flex;
	flex-direction: row;
	justify-content: center;
	justify-self: center;
	margin: 10px auto;
	
	width: 70%;
}
.PTile a{
  display: flex;
  justify-content: center;
  align-items: center;
}
.clickable {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;     
  z-index: 1;
}
.PTile{
	display: flex;
	justify-content: center;
	align-content: center;
	height: 190px;
	width: 33%;
	margin: 10px 10px;
	
}
.TileTitle{
    display: flex;
	height: 80px;;
    /* flex-direction: column;*/
	justify-content: center;
    align-items: center;
    /* justify-content: center;*/
visibility:hidden;
	oppacity:0;
	background-color: rgba(0,11,23,0.8);
	width: 100%; 
	align-items: stretch;
}
.TileTitle h2{
	align-self: center;text-align: center;
	
}
.fadein{
opacity:1;
transition: 1s ease ;
}

.fadein:hover{
opacity:0.7;
transition: 1s ease;
}

/*-------------------		INHANCE					-------------------*/
#Inhance{
	background-color: white;	
	background-image: url("Media/Inhance/INHANCE-VECTOR-LOGO.png");
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	border: 10px solid #ffffff;
}
#Inhance:hover .TileTitle{
	transition:visibility 0.3s ease-in, opacity 0.5s; 
            visibility:visible; opacity:1;
}

/*-------------------		STILLE WATERS			-------------------*/
#StilleWaters{
	background-color: white;	
	background-image: url("Media/Stille Waters/LogoSW.png");
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	border: 10px solid #ffffff;
}
#StilleWaters:hover .TileTitle{
	transition:visibility 0.3s ease-in, opacity 0.5s; 
            visibility:visible; opacity:1;
}
/*-------------------		CSS						-------------------*/
#CSS{
	background-color: white;	
	background-image: url("Media/CSS/starryskyFull.jpg");
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	border:10px solid #ffffff;
}
#CSS:hover .TileTitle{
	transition:visibility 0.3s ease-in, opacity 0.5s; 
            visibility:visible; opacity:1;
}
/*-------------------		EXPOSE					-------------------*/
#Expose{
	background-color: white;	
	background-image: url("Media/Expose/LogoExpose.png");
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	border:10px solid #ffffff;	
}
#Expose:hover .TileTitle{
	transition:visibility 0.3s ease-in, opacity 0.5s; 
            visibility:visible; opacity:1;
}
/*-------------------		GAME					-------------------*/
#Brand{
	background-color: white;	
	background-image: url("Media/Brand Challenge/logoBC.png");
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	border:10px solid #ffffff;		
}
#Brand:hover .TileTitle{
	transition:visibility 0.3s ease-in, opacity 0.5s; 
            visibility:visible; opacity:1;
}
/*-------------------		Biodiversity			-------------------*/
#Biodiversity{
	background-color: white;	
	background-image: url("Media/Biodiversity/Paintbrush.png");
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	border:10px solid #ffffff;	
}
#Biodiversity:hover .TileTitle{
	transition:visibility 0.3s ease-in, opacity 0.5s; 
            visibility:visible; opacity:1;
}
/*-------------------		GRAPHICS				-------------------*/
#Graphics{
	background-color: white;	
	background-image: url("Media/graphics/Illustration.png");
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	border:10px solid #ffffff;	
}
#Graphics:hover .TileTitle{
	transition:visibility 0.3s ease-in, opacity 0.5s; 
            visibility:visible; opacity:1;
}
/*-------------------		CORN					-------------------*/
#Corn{
	background-color: white;	
	background-image: url("Media/Cornnoisseur/logoCorn.jpg");
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	border:10px solid #ffffff;	
}
#Corn:hover .TileTitle{
	transition:visibility 0.3s ease-in, opacity 0.5s; 
            visibility:visible; opacity:1;
}
/*-------------------		ANIMATION				-------------------*/
#Animation{
	background-color: white;	
	background-image: url("Media/Animation/YouTube Button.png");
	background-size: contain;
	background-repeat:no-repeat;
	background-position: center;
	border:10px solid #ffffff;		
}
#Animation:hover .TileTitle{
	transition:visibility 0.3s ease-in, opacity 0.5s; 
            visibility:visible; opacity:1;
}

/*----------------------------------------------------------------------------------------------------------*/
/*-------------------		Portfolio pages		-------------------*/

.contactSection{
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: center;
	margin: 0 auto;
}
.ContactTile{
	display: flex;
	width: 20%;
	overflow: hidden;
}
.ContactTile img{
	width: 100%;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
 	 width: 18%;
	text-align: center;
	margin: 0 1%;
	padding: 10px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.container {
  padding: 2px 16px;
	text-align: center;
	word-wrap: break-word;
}
/*----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------*/
/*-------------------		Portfolio pages		-------------------*/
.selection{
	text-align: center;
	margin-top: 30px;
	height: 40px;
}
.selection .active{
	background: linear-gradient(180deg, rgb(46, 225, 231), 30%, transparent);
}
/*-------------------		Portfolio items		-------------------*/
.pHeader {
	display: flex;
    background-position: top;
    background-repeat: no-repeat;
	background-size: cover;
	
	height: 400px;
	width: 80%;
	justify-content: center;
	overflow: hidden;
}
.pHeaderText{
	display: flex;
	align-content: center;
	transition: .5s ease;
  	opacity: 0;
  	position: absolute;

	-ms-transform: translate(-50%, 50%);
  	transform: translate(-50%, 50%);
 	flex-direction:column;
  	text-align: center;
	background-color:rgba(0,0,0,0.92);
	width: 80%;
	padding: 40px 0;
}
.pHeaderBack{

}
.pHeader:hover .pHeader div {
  opacity: 0.3;
}

.pHeader:hover .pHeaderText {
  opacity: 1;
}
.buttons{
	display: flex;
	flex-direction: row;
	width: 70%;
	justify-content: center;
	margin: 0 auto;
}
.button {
	display: flex;
    background-color: #0446a7;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    
    font-size: 16px;
    margin: 4px 10px;
    cursor: pointer;
}
.pText{
	text-align: center;
	height: 500px;
	width: 80%;
	margin: 0 auto;
	line-height: 30px;
}
.pText p {

	margin: 30px 0;
	line-height: 30px;
}
.phr{
	width: 150px;
margin-left: auto;
margin-right: auto;
height: 3px;
background-color:rgba(255,255,255,0.90);
opcaity: 0.5;
	border: none;
	margin: 40px auto;
	border-radius:7px; 
}
.Inhance{
	background-image: url("Media/Inhance/InhanceScreenShot.jpg");
    
    background-repeat: no-repeat;
	background-size: contain;
	height: 620px;
	
	width: 80%;
	justify-content: center;
	overflow: hidden;
}
.ksba{
	background-image: url("Media/Screenshot_ksba.png");
	background-position: top;
}
.stillewaters{
	background-image: url("Media/Stille Waters/StilleWatersBeachHouseScreenshot.PNG");
	background-position: top;
}
.ContainerDrawing{
    position: relative;
    height: 620px;
    width: 840px;
    margin: 0 auto;
    overflow: hidden;
}
.expose{
	background-image: url("Media/Expose/Expose.png");
	background-position: top;
}
.brandchallenge{
	background-image: url("Media/Brand Challenge/Slide5.PNG");
	background-position: top;
	display: flex;
    
    background-repeat: no-repeat;
	background-size: cover;
	height: 720px;
	
	width: 80%;
	justify-content: center;
	overflow: hidden;
}
.graphics{
	background-image: url("Media/graphics/Illustration.png");
	background-position: top;
	display: flex;
    
    background-repeat: no-repeat;
	background-size: cover;
	height: 800px;
	
	width:50%;
	justify-content: center;
	overflow: hidden;
}
.corn{
		background-image: url("Media/Cornnoisseur/Asset 16-8.png");
	background-position: top;
	display: flex;
    
    background-repeat: no-repeat;
	background-size: cover;
	height: 600px;
	
	width:50%;
	justify-content: center;
	overflow: hidden;
}
.bio{
	background-image: url("Media/Biodiversity/BIOMES.png");
	background-position: top;
	display: flex;
    
    background-repeat: no-repeat;
	background-size: cover;
	height: 600px;
	
	width:70%;
	justify-content: center;
	overflow: visible;
}
/*---------------------------------------------------------------------*/
/*-------------------		FOOTER					-------------------*/
/*-------------------								-------------------*/
/* Style the container/contact section */
.row{
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.containerE {	
	display: flex;
    border-radius: 5px;   
    padding: 10px;
	width: 40%;
	margin:0 30px;
	flex-direction: column;
}
.containerEa{
	display: flex;
    border-radius: 5px;   
    padding: 10px;
	width: 20%;
	margin:0px 30px 0 30px;
	flex-direction: column;
}
/* Create two columns that float next to eachother */
.columnE {
    margin-top: 6px;
    padding: 20px;
}.columnE form{

		display: flex;
	flex-direction: column;
	justify-content: center;
	
}

/* Clear floats after the columns */
.rowE:after {
    content: "";
    display: table;
    clear: both;
}
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type=submit] {
    background-color: #0446a7;
    color: white;
    padding: 12px 20px;
    border: none;
	cursor: pointer;
	margin-top: 10px 0;
}
@media screen and (max-width: 600px) {
    .columnE, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}
/*---------------------------------------------------------------------*/
/*-------------------		FOOTER					-------------------*/
/*-------------------								-------------------*/
.footer{
	display: flex;	
	justify-content: center;
	border-top-style: solid;
	border-top-color:#CACACA; 
	border-top-width: 1px;
	height: 100px;
	text-align: center;
	width: 80%;
	align-self: center;}
/*---------------------------------------------------------------------*/
/*------------------- 		@media stuff 			-------------------*/
/*-------------------								-------------------*/

@media only screen and (max-width: 600px) 
{
	.spacer {
		display: block;
		width: 95px;
		margin: 2px 0 4px 0;
	}
	.item{
		display: block;
	}
	.links {
		display: flex;
		flex-direction: column;
	}
	.links a{
		display: flex;
		flex-direction: column;
	}
	/*------------------- 		INDEX buttons @media stuff 			-------------------*/
	.ProjectButtons{
		display: flex;
		width: 70%;
		flex-direction: column;
		justify-self: center;
		justify-content:center; 
		margin: 0 auto;
		text-align: center;
	}
	.btn{
		margin:10px auto;
		width: 90%;
		justify-self:center; 
	}
	/*------------------- 		INDEX tiles @media stuff 			-------------------*/
	.projectsRow{
		flex-direction: column;
		width: 90%;
	}
	.PTile {
		margin:10px auto;
			width: 90%;
		height: 200px;
		}
	
		/*------------------- 		CONTACT tiles @media stuff 			-------------------*/
	.contactSection{
		flex-direction: column;
		}

		.card {
		width: 90%;
		margin: 20px auto;
		padding: 10px;
		}	
		.conIcon{
		width: 50%;
		}	
		.HalfSkill{
		display: flex;
		flex-direction: column;
		}
		.skill{
		width: 90%;
		}
}

@media only screen and (min-width: 600px) and (max-width: 800px) 
{
		.projectsRow{
		flex-direction: column;
		width: 90%;
		}
		.HalfSkill{
			display: flex;
			flex-direction: column;
		}
		.card {
		width: 20%;
		margin: 20px auto;
		padding: 10px;
		}	
		.conIcon{
		width: 50%;
		}	
		.PTile {
		margin:10px auto;
			width:80%;
		height: 500px;
		}
		.skill{
		width: 90%;
		}
}
@media only screen and (min-width: 800px) 
{
		.card {
		width: 20%;
		margin: 20px auto;
		padding: 10px;
		}	
		.conIcon{
		width: 35%;
		}	
	.contactSection{
	display: flex;
	flex-direction: row;
	width: 70%;
	justify-content: center;
	margin: 0 auto;
}

}
@media only screen and (min-width: 300px) and (max-width: 500px) {
	.pHeaderText{
		top:55%;
	}
	.pHeaderText{
		top:55%;
	}
}
@media only screen and (min-width: 501px) and (max-width: 650px) {
	.pHeaderText{
		top:55%;
	}
}
@media only screen and (min-width: 651px) and (max-width: 800px) {
	 .pHeaderText{
		top:48%;
	}
}
@media only screen and (min-width: 801px) and (max-width: 1100px) {
	.pHeaderText{
		top: 55%;
	}
}
@media only screen and (min-width: 1101px) and (max-width: 1400px) {
	.pHeaderText{
		top:55%;
	}
}
@media only screen and (min-width: 1401px) and (max-width: 1600px) {
	.pHeaderText{
		top:60%;
	}
}

@keyframes Gradient {
							0% {
								background-color: rgb(46, 225, 231);
							}
							17% {
								background-color:  rgb(104,88,178);
							}
							37% {
								background-color:  rgb(144,1,245);
							}
							49% {
								background-color: rgb(254,0,234);
							}
							66% {
								background-color:  rgb(144,1,245);
							}
							82% {
								background-color:  rgb(104,88,178);
							}
							100% {
								background-color: rgb(46, 225, 231);
							}	
						}