@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-image: linear-gradient(45deg, #9888a5, #7A6B9D); /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-445552-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-445552-294d4a*/
	background-color: #445552; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-445552-294d4a*/
	font-size: 2.7em;
	text-shadow: 3px 3px 4px #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.2em;
	color: #d6cfdd; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-445552-294d4a*/
	background-color: #445552; /*These colors were made with the help of Coolers  https://coolors.co/d6cfdd-9888a5-776472-445552-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-445552-294d4a*/
	background-color: #294D4A; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-445552-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-445552-294d4a*/
	text-align: center;
	margin: 0 auto;
}



ul {
	list-style-type: none; /* remove the default bullet */
	margin: 4px;
	padding: 0px;
	background-color: #445552; /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-445552-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-445552-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: #294D4A /*These colors were made with the help of Coolers: https://coolors.co/d6cfdd-9888a5-776472-445552-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 */

.asimovian-regular {
  font-family: "Asimovian", sans-serif; /*This font was used with the help of Google Fonts: https://fonts.google.com/specimen/Asimovian*/
  font-weight: 400;
  font-style: normal;
}

.purpleborder {

	border-radius: 90px;
}
.innerpic {
	border-radius: 20px;
}


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

.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*/
}
/* imgM is for my main images in the carousel*/

.imgN {
 
  margin-left: auto;
  margin-right: auto;
 width: 30%;
 min-width: 500px;
} /* imgN is for images below my hobbies/interests*/

.width30 {
	width: 30%
}
.clearfix {
	overflow: auto;
}
.floatR
{
	float: right;
}
.padding
{
	padding: 20px;
}
.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;
}