body {
	background-color: rgb(50,50,50);
	font-family: arial;
	margin: 0;
}

#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-top: 80px;
	white-space: nowrap;
	margin-left: 20px;
}
#title {
	font-size: 1.5em;
	margin: 10px;
	color: rgb(220,220,220);
}
#detail {
	margin: 10px;
	color: rgb(200,200,200);
	padding: 5px 10px;
	border-radius: 3px;
	background-color: rgb(30,30,30);
	display: inline-block;
	font-size: 0.8em;
}
.url {
	color: springgreen;
}

.recordDiv {
	border-radius: 10px;
	border: 1px solid rgb(150,150,150);
	display: inline-block;
	background-color: rgb(30,30,30);
	color: rgb(200,200,200);
}
.recordDiv img {
	border-radius: 0 0 10px 10px;
}
.recordText {
	padding: 10px 0;
}
.recordCount {
	float: left;
	margin-left: 10px;
}
.recordDate {
	float: right;
	margin-right: 10px;
	font-size: 0.8em;
}
