@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	background-image: url('bioengineering.jpg');
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: rgb(10,10,10);
	font-family: Tahoma, sans-serif;
}

.webpage {
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

.nav {
    width: 100%;
	display: inline-block;
    margin: 0;
	position: fixed;
	z-index: 1;
}
.nav a {
	text-decoration: none;
	color: rgba(200,200,200,0.8);
	transition: 0.3s;
}
.nav a:hover, .nav a:active {
	color: rgba(250,100,250,1);
}
.nav table {
	width: 100%;
	height: 70px;
}
.nav td {
	text-align: center;
	background-color: black;
	width: 16%;
	border-left: 1px solid rgba(255,255,255,0.2);
	border-right: 1px solid rgba(255,255,255,0.2);
	box-shadow: 0px 3px 3px black;
	letter-spacing: 2px;
	transition: 0.3s;
	padding: 0 10px;
	cursor: pointer;
}
.nav td:hover, .nav td:active {
	transform: scale(1.1, 1.1);
	background-color: rgb(70,60,80);
}
.nav td:hover a {
	color: rgba(250,250,250,1);
}

.header {
	letter-spacing: 2px;
}
.main {
	margin-bottom: 30px;
	width: 96%;
	padding: 1% 2%;
	background-color: rgba(55,39,19,0.5);
	border: 2px solid rgb(200, 200, 200, 0.3);
	border-radius: 5px;
}

.section {
	text-align: center;
	background-color: rgba(55,39,19,0.7);
	border: 2px solid rgba(200,200,200,0.2);
	border-radius:10px;
	padding: 2%;
	margin: 10px 0;
}
.section img {
	display: inline-block;
	margin-top: 10px;
	margin-left: 15px;
	border:10px solid rgba(39,29,0,0.50);
}

.res {
	text-align: center;
	background-color: rgba(55,39,19,0.7);
	border-radius: 10px;
	padding: 1%;
}

.res img {
	display: inline-block;
	margin-top: 10px;
	margin-left: 15px;
	border:10px solid rgba(39,29,0,0.50);
}

.content {
	margin: 100px 5% 0 5%;
	width: 90%;
}

.content p {
	margin: 0 1%;
	line-height: 160%;
	font-size: 1.2em;
	color: rgba(255,255,255,0.80);
	background-color: rgba(55,39,19,0.7);
	border-radius:5px;
	padding: 2%;
}
.content h3 {
	line-height: 160%;
	color: rgba(248,248,248,1.00);
	border-radius: 10px;
	padding-left: 1%;
}
.content h1 {
	color: rgba(248,248,248,1.00);
	border-radius: 5px;
	background-color: rgba(55,39,19,0.7);
	padding: 1%;
}
.content img {
	display: inline-block;
	height: 300px;
	z-index: 9;
	transition: transform 0.2s;
}

.content img:hover {
	transform: scale(1.1,1.1);
}