﻿body {
    height: 100%;
    background-color: #000;
    margin: 0px;
    font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
    font-weight: normal;
    font-size: 84%;
}

body, a {
    color: #EEE;
}

a {
    text-decoration: none;
}

    a:hover {
        font-weight: bold;
        text-decoration: underline;
    }

div {
}

#canvas {
    position: relative;
    margin: auto;
    cursor: pointer;
}

    #canvas .top {
        position: absolute;
        width: 100%;
        height: 100px;
        top: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    }

    #canvas .bottom {
        position: absolute;
        width: 100%;
        height: 100px;
        bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    }

    #canvas .right {
        position: absolute;
        width: 100px;
        height: 100%;
        right: 0;
        background: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    }

    #canvas .left {
        position: absolute;
        width: 100px;
        height: 100%;
        left: 0;
        background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
    }

#menu {
    position: absolute;
    top: 100px;
    left: 100px;
    font-size: 120%;
    width: 65px;
}

#next {
    position: absolute;
    top: 0;
    right: 50px;
    bottom: 0;
    margin: auto;
    display: none;
}

#site {
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 140%;
    font-weight: bold;
    text-align: right;
    vertical-align: bottom;
}

.rounded {
    background-color: #000;
    padding: 15px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-weight: bold;
}

    #menu ul li {
        margin: 5px;
        padding: 0;
    }
