/* GLOBAL */

    * {
        box-sizing: border-box;
        margin:0;
        padding:0;
        font-family: Courier, "Courier New", monospace;
        text-transform: uppercase;
        font-size: 16px;
    }

/* HOME */

    #background {
        display:block;
        position:absolute;
        width:100%;
        height:100%;
    }
    #login {
        position: fixed;
        top: 0;
        right: 25px;
        z-index: 2;
    }
    #login a {
        color: #666;
    }
    .container {
        width:50%;
        position: relative;
        margin: 0 0 0 50%;
        display:block;
    }
    .header {
        text-align: center;
        display: inline-block;
        background-color:transparent;
        width:100%;
        position: relative;
        padding:10%;
        margin: 25% 0 0 -50%;
        letter-spacing:2.5px;
    }
    .header h1 {
        text-align: center;
        line-height: 80px;
        font-size: 50px;
        font-weight:bold;
    }
    .header h2 {
        text-align: center;
        line-height: 60px;
        font-size: 30px;
        font-weight:bold;
    }
    a,
    a:visited, 
    a:active, 
    a:hover {
        line-height: 60px;
        font-size: 25px;
        text-decoration:none;
        color:#000;
    }
    a:hover {
        color: #fff;
        background-color:#000;
    }

    #layer {
        background-color: #fff;
        width: 50%;
        height: 100%;
        display: block;
        position: absolute;
        margin-left: 50%;
    }


/* UI */

    input[type=text],
    input[type=password] {
        width: 100%;
        border: 2px solid #888;
        border-radius: 0;
        margin-bottom: 10px;
        padding: 5px;
        text-align: center;
        font-size: 18px;
        text-transform: none;
    }
    input[type=submit] {
        width: 100%;
        border: 2px solid #000;
        border-radius: 0;
        margin-bottom: 10px;
        padding: 5px;
        text-align: center;
        font-size: 18px;
        background-color: transparent;
    }    
        input[type=submit]:hover,
        input[type=submit]:active,
        input[type=submit]:focus {
            background-color: #000;
            color: #fff;
        }
        
/* LOGIN */
        
    div.login {
        display: block;
        width: 500px;
        max-width: 90vw;
        margin: 30vh auto 0 auto;
    }
    p.loginstatus {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 18px;
        padding: 5px;
        margin-bottom: 10px;
    }

    