@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
	background-image: url('static.jpg');
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: rgb(10,10,10);
	font-family: Tahoma, Geneva, sans-serif;
}

.webpage {
	position: absolute;
	top: 0;
	left: 0;
	right: 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(90,70,110);
}
.nav td:hover a {
	color: rgba(250,250,250,1);
}

.content {
	margin-top:70px;
	text-align: center;
	line-height: 160%;
	color: rgba(255,255,255,0.80);
	background-color: rgba(0,0,0,0.7);
	padding: 2%;
	line-height: 150%;
}
.content p {
	background-color: rgba(0,0,0,0.7);
	padding: 30px;
	margin: 0 10% 20px 10%;
}
.artSection {
	margin-top: 20px;
	padding: 30px 20px 20px 20px;
}
.img img {
	display: inline-block;
	min-height: 300px;
	margin: auto;
	border: 7px solid rgba(20,20,20,0.8);
	background-color: rgba(200,200,200,0.31);
	z-index: 9;
	transition: transform 0.2s;
}
.img img:hover {
	transform: scale(1.1,1.1);
	text-align: center;
}
.img .pixel {
	min-height: 0px;
}

.content a {
	text-decoration: none;
	color: rgba(153,224,71,0.70);
	background-color: rgba(0,0,0,0.7);
}

.content a:hover {
	text-decoration: underline;
	color: rgba(153,224,71,1.00);
}
