@charset "utf-8";
/* CSS Document */

body {
	width: 100%;
	margin: 0;
	background-color: rgb(50,50,50);
	font-family: arial;
}
img {
	width: 80%;
	margin: 20px 10%;
	max-width: 100%;
	border: 2px solid rgb(100,100,100);
}
a {
	color: yellow;
}
li {
	line-height: 200%;
}

#webpage {
	width: 100%;
	position: absolute;
}

.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);
}

#content {
	margin: 100px 5% 0px 5%;
	padding-bottom: 50px;
	width: 90%;
	color: rgb(250,250,250);
}

.textblock {
	width: 100%;
	border-top: 1px solid rgb(80,80,80);
	padding-top: 20px;
	line-height: 150%;
}
.textblock a {
	color: yellow;
}
.texttitle {
	font-size: 1.1em;
	color: springgreen;
	padding: 5px 10px;
	border: 1px solid rgb(150,150,150);
	border-left: 5px solid rgb(150,150,150);
	border-radius: 5px;
}
.spacing {
	display: block;
	width: 60%;
	margin: 20px 20%;
	border-top: 1px solid rgb(100,100,100);
	padding-top: 20px;
}
