/* reset browser default stylings*/

* {
	margin: 0;
  padding: 0;
}


/* navigation bar styling */

nav {
	margin-bottom: 20px;
	background-color: #9e1515;
	padding-bottom: 43px;
	
	
}

nav ul {
	text-align: right;
	padding-right: 80px;
	top: 21px;
	position: relative;
	
	
}

nav ul a{
	text-decoration: none;
	
}

nav ul li {
	list-style: none;
	display: inline;
	font-size: 25px;
	color: white;
}


/* about me section styling */

section#aboutMe {
	height: 60px;
	width: 100%;
	text-align: center;
	margin-top: 150px;
	font-size: 30px;
	margin-bottom: 2%;
}

/* projects section styling */

 section#projects { 
	width: 100%;
	margin-bottom: 100px;
	font-size: 25px;
	
	

}

div.project {
	float: left;
	width: 50%;
	text-align: center;
	margin-bottom: 6%;
	
}

h2.rightHeader {
	text-align: center;
	margin-bottom: 1%;
	text-decoration: underline;

}

h3 {
	margin-bottom: 30px;
}

section ul li {
	margin-bottom: 2px;
	font-size: 20px;
	
}

section a h4 {
	margin-top: 10px;
	font-size: 20px;
}


/* skills section styling */

section#skills {
	margin-bottom: 100px;
	margin-left: 25%;
	font-size: 20px;
	margin-top: 50px;
	
}
h2.leftHeader {
	position: relative;
	margin-left: 510px;
	margin-bottom: 1%;
	text-decoration: underline;
}

th,td {
	padding-left: 40px;
}


/* contact section styling */

section#contact {
	margin-bottom: 100px;
	width: 100%;
	text-align: center;
	font-size: 20px;
	
}

section#contact h2 {
	margin-bottom: 1%;
	text-decoration: underline;
}

section#contact p, h3 {
	margin-bottom: 10px;
	font-size: 20px;
}

/* footer section styling */
footer {
	position: fixed;
	
	background-color: #9e1515;
	bottom: 0;

	width: 100%;
	height: 6%;
	
	
}

img {
	height: 600px;
	width: 65%;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 50%;
  position: relative;
  margin: auto;
  float: left;
  padding-bottom: 50px;
  margin-bottom: 1%;
	
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 200;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: black;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;

  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: black;
  font-size: 18px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


/* Media Queries */

@media screen and (max-width: 720px) {
	

	section#skills {
		margin-bottom: 100px;
		margin-left: 0;
		
	}

	.slideshow-container, .dots {
		display: none;
	}

	div.project {
		float: left;
		width: 100%;
		text-align: center;
		margin-bottom: 6%;
		
	}

	section#aboutMe {
		height: 60px;
		width: 100%;
		text-align: center;
		margin-top: 88px;
		font-size: 30px;
		margin-bottom: 2%;
	}

	h2.leftHeader {
		text-align: center;
		margin-left: 0;
		margin-bottom: 1.5%;
		text-decoration: underline;
	}
}