html {
	height: 100%;
	overflow-x: hidden; 
	overflow-y: auto;
	margin: 0px;
	padding: 0px;
}

body {
	height: 100%;
	font-family: 'Tahoma', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	overflow-x: hidden; 
	overflow-y: auto;
	margin: 0px;
	background-image: url("MISC/INTRO.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: blue;
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#nav {
	background-color: #0000FF;
	color: white;
}

.clickable {
	cursor: pointer;
}

.navItem {
}

.navItem:hover {
	color: blue;
	background-color: white;
}

.noshow {
	display: none;
}

.show {
	display: inline-block;
}

.responsive {
	max-width: 70%;
	height: auto;
 }

.marg {
	margin: 5px;
} 

#profilePic {
	float: left;
	width: 30%;
	height: auto;
	max-width: 30%;
}

.flex_container {
	display: flex;
	width: 100%;
}
.flex_item_left {
	width: 200px;
}
.flex_item_right {
	flex: 1;
}

#menu {
	z-index: 10;  
	position: absolute;  
	right: 0;  
	top: 0;
	padding: 5px;
}

#menu div {
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 5px 0;
}

/* hamburger menu */
#nav2 {
	z-index: 10;  
	position: absolute;  
	right: 0;  
	top: 10;
	padding: 5px;
	display: none;
	background-color: #0000FF;
	color: white;
}

.carousel-control-prev,
.carousel-control-next{
      bottom: 50%;
}

.carousel-itemx {
	margin: 10px;
}

.aa {
	color: white;
	text-decoration: none;
	padding: 2px;
	margin: 2px;
}

.aa:hover {
	color: blue;
	background-color: white;
}

@media screen and (max-width: 820px) {
	#menu {
	  display: inline-block;
	}

	.flex_item_left {
		display: none;
	}	 
	.desc {
		font-size: .7em;
		padding: 0px;
		padding-right: 5px;
	}
}

@media screen and (min-width: 821px) {
	#menu {
		display: none;
	}
	#nav2 {
		display: none;
	}
	.flex_item_left {
		display: inline-block;
	}
 }

 @media screen and (min-width: 500px) {
	.carousel-control-prev,
	.carousel-control-next{
      bottom: 20%;
	}	
 }