@charset "utf-8";
/* CSS Document */

body {
	width: 100%;
	margin: 0;
	background-color: rgb(50,50,50);
	font-family: arial;
}

#webpage {
	width: 100%;
	position: absolute;
}
#content {
	margin-top: 80px;
	font-family: Tahoma, sans-serif;
	text-align: center;
	display: inline-block;
	padding-bottom: 20px;
}
#intro {
	color: rgb(200,200,200);
}
#intro h2, #intro p {
	padding: 0 30px;
}
#intro p {
	line-height: 150%;
}
.smallText {
	margin-left: 10px;
	padding: 5px;
	border: 1px solid rgb(200,200,200);
	font-size: 0.5em;
	vertical-align: middle;
	color: yellow;
}
.smallText2 {
	font-size: 0.8em;
}

img {
	border: 2px solid rgb(80,80,80);
	margin: 5px;
	height: 350px;
}
.imgDetail {
	display: inline-block;
	background-color: rgb(10,10,10);
	border: 2px solid rgb(80,80,80);
	margin: 5px;
	padding-bottom: 10px;
}
.imgDetail img {
	margin: 0;
}
.imgDetail span {
	color: rgb(200,200,200);
	
}

.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);
	border-bottom: 2px solid rgba(255,255,255,0.2);
	box-shadow: 0px 2px 2px rgba(50,50,50,0.6);
	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(20,50,50);
}
.nav td:hover a {
	color: rgba(250,250,250,1);
}
