@charset "UTF-8";
	

@keyframes fadeInUp {
	0% {transform: translateY(100%);
		opacity: 1;
	}
	100% {
	transform: translateY(0%);
	opacity:1;
	}
} /*This was used to create a fade in animation on the ul li a class with the help of Atharv Joshi */


body {
	
	background-color: #bfc8ad; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
} /*This background gradient was made with the help of W3 schools*/


h1 {
	text-align: center;
	color: #d6cfdd; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
	background-color: #537958; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
	font-size: 2.7em;
	text-shadow: 2px 2px 3px #000000;
} /*This text-shadow application was made with the help of W3 schools*/

h2 {
	text-shadow: 2px 2px 4px #000000;
}/*This text-shadow application was made with the help of W3 schools*/
p {
	text-align: center;
	font-size: 1.3em;
	line-height: 1.8;
	color: #d6cfdd; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
	background-color: #537958; /*These colors were made with the help of Coolers  https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
	text-shadow: 2px 2px 4px #000000;
}/*This text-shadow application was made with the help of W3 schools*/

.subjecthead {
	text-align: center;
	color: #d6cfdd; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
	background-color: #294D4A; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
	font-size: 2em;
}


.divhead {
	width: 30%;
  	overflow: auto;
  	background-color: #294D4A; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
	text-align: center;
	margin: 0 auto;
}



ul {
	list-style-type: none; /* remove the default bullet */
	margin: 4px;
	padding: 0px;
	background-color: #537958; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
	overflow: hidden;
	border-radius: 30px;
	text-align: center; /* this should work lets fix it, look it up */
	display: inline-block; /*This was the w3 school solution to centering the list */

}

ul li {
	float: left;
	
}

ul li a {
	color: #d6cfdd; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
	text-decoration: none;
	padding: 14px 20px;
	display: block;
	animation: 1.5s fadeInUp; /*This was made with the help of Atharv Joshi, who was aided by Dev Community*/
	}

ul li a:hover {
	background-color: #7D1D3F /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
}

/* carousel containerr*/
.carousel {
	width: 40%; /* full width of the parent/ container */
	max-width: 800px; /*optional max width*/
	overflow: hidden; /* hide overflowing slides */
	margin: auto; /*centers carousel in the browsers window */
}
/* slides container- row of images */
.slides {
	display: flex;
	transition: transform 0.5s ease; /* smooth sliding animation over a half second */
	
}

.slides img {
	width: 100%;
	height: auto; /*maintain aspect ratio*/
	flex-shrink: 0; /*prevents images from shrinking */
}


a {
	text-decoration: none;
	color: #d6cf99
	/* my hyperlink tags were developed with the help of w3 schools */
}

div.list {
  text-align: center;
} /*This was the w3 school solution to centering my navigation bar */

.fontA {
     font-family: "Cambria", Georgia, serif;
  font-weight: 600;
  font-style: normal;

}

.purpleborder {

	border-radius: 10px;
}
.purpleborderB {
	border-radius: 10px;
	padding: 20px;
}
.innerpic {
	border-radius: 10;
}


.personalp {
	margin-left: 250px;
  	margin-right: 250px;
  	background-color: #537958; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
}
.pp {
	margin-left: 250px;
  	margin-right: 10px;
  	background-color: #537958; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
}
.stem1 {
	margin-left: 100px;
  	margin-right: 10px;
  	background-color: #537958; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-537958-294d4a*/
}.stem2 {
	margin-left: 10px;
  	margin-right: 100px;
  	background-color: #537958;
}
.stem {
	margin-left: 100px;
  	margin-right: 100px;
  	background-color: #537958;

}

.titlemargin {
	margin-left: 100px;
	margin-right: 100px;
}

.imgM {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 30%;
  clip-path: circle(50%); /* This image shape was used with the help of W3 schools*/
}
.imgS {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
  
}
.imgST1 {
  display: block;
  margin-left: 10px;
  margin-right: auto;
  width: 50%;
  max-width: 500px;
  
}
.imgST2 {
  display: block;
  margin-left: auto;
  margin-right: 10px;
  width: 50%;
  max-width: 500px;
  
}
/* imgM is for my main images in the carousel*/
.imgO {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width:40%;
 
}
.imgN {
 
  margin-left: auto;
  margin-right: auto;
 width: 30%;
 min-width: 500px;
} /* imgN is for images below my hobbies/interests*/

.imgA {
	 margin-left: auto;
  margin-right: auto;
 width: 50%;
 min-width: 700px;
} /* This is for class jpg's*/

.width30 {
	width: 30%
}
.clearfix {
	overflow: auto;
}
.floatR
{
	float: right;
}
.padding
{
	padding: 40px;
}
.paddingD
{
	padding-top: 100px;
	padding-bottom: 100px;
}
.paddingE
{
	padding-top: 50px;
	padding-bottom: 50px;
}
.smallerpadding {
	padding: 5px;
}
.titlepadding {
	padding:10px;
}
.superpadding {
	padding:50px;
}
/*these degrees of padding are used to provide adjustable spacing between different divs in the website*/
.centers {
	text-align: center;
	
}

.imageside {
	display: flex;
	align-items: center;
	overflow: auto;
	justify-content: center;
	width: 100%;
}
.imageside p {
	flex: 1 1 40%;
}
.imageside iframe {
	border: none;
	
}
@media (max-width: 768px) {
	.imageside {
	flex-direction:column
	}
	.imageside p,
	.imageside iframe {
	flex: 1 1 100%;
	width: 100%;
	margin-right: 0;
	}
	
}



.despadding {
	padding-top: 0%;
	padding-bottom: 0%;
}
.divmarginsA {
	margin-right: 250px;
}
.first-line {
    display: block;       
    font-size: 1.8em;     
    font-weight: bold;   
    margin-bottom: 10px;  
     
}