html {
    background-image: url("bg.png");

    color: white;
    font-family: monospace;
}

a {
    color: #0cc;
}
a:visited {
    color: #0aa;
}
#topnav, #top {
    position: fixed;
    top: 0;

    background: black;
    border-bottom: 1px solid #0aa;
}
#top {
    right: 0;
    left: 300px;
    height: 31px;
}
#topnav {
	left: 0;
	width: 300px;
	border-right: 1px solid #0aa;
}

.u-here {
    background: #028;
}

#nav {
    display: none;

    padding: 0;
    margin: 0;

    list-style: none;

    margin-bottom: 8px;
    transition: 0.3s;
}
#nav li {
    padding-left: 2em;
}
#nav a {
    text-decoration: none;

    color: white;
    background: black;

    display: block;

    width: 100%;
}
#nav a:nth-of-type(2n + 1){
    background: #011;
}
#nav a:hover, .u-here:hover {
    background: #166;
}

p {
    margin: 8px 10px;
}

audio {
    margin: 0;
    padding: 0;

    display: block;
    width: 300px;
}

table {
    max-width: 800px;

    margin: 4em auto 0;
    border-collapse: collapse;
}
tr {
    border-bottom: 1px solid #666;
}

td {
    text-align: center;

    width: 100%;
}
.title {
    text-align: left;
    padding-left: 10px;
}

.title, .download {
    background: rgba(0,0,0,0.3);
}
.download {
    min-width: 150px;
}
.download:hover {
    background: #111;
}
.download a:hover {
    color: white;
}
.download .detail {
    display: none;
    position: fixed;
    top: 8px;
    right: 10px;
}
.download > a:hover + .detail {
    display: block;
}

.download .filesize {
	position: relative;
	bottom: -2px;
}

#anime-mascot {
	position: fixed;
	bottom: 10px;
	right: 10px;

	height: 200px;
	width: 200px;

	background-size: 200px;
	background-repeat: no-repeat;

	background-image: url("mascot.png");
}

tr:hover .title {
    padding-left: 30px;
    background: rgba(50, 50, 100, 0.3);
}
tr:hover .download {
    background: rgba(50, 50, 100, 0.3);
}
tr:hover {
    border-color: #0aa;
}