/* Styles used only on portfolio.html */

.mySlides {
	display: none;
}

img {
	vertical-align: middle;
	width:100%;
}

/* Slideshow container */
.slideshow-container {
	max-width: 120px;
	position: relative;
	margin: auto;
	padding-top: 30px;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;	
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;	
	user-select: none;
}

/* Position the "previous button" to the left */
.prev {
	left: -70px;
	border-radius: 3px 0 0 3px;	
}

/* Position the "next button" to the right */
.next {
	right: -70px;
	border-radius: 3px 0 0 3px;	
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px 50px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: #717171;
}

/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
	  opacity: 0.4;
} 
  to {
	  opacity: 1;
}
}

@keyframes fade {
  from {opacity: .4
} 
  to {opacity: 1
}
}

.aboutapp{
	padding-left: 20vw;
	padding-right: 20vw;
	padding-top: 20px;
}

.aboutapp h2{
	text-align: center;
	padding-bottom: 10px;
 }

.aboutapp h3{
	padding-bottom: 5px;
 }

.aboutapp p{
	text-align: justify;
 }
