
/* Main Style */

body{
    font-size: 100%;
    background: url('/img/bg/4-800.jpg') no-repeat fixed center center / cover black;
}

#DesktopSpace{
    width: 1em;
    height: 5em;
}

#Name{
    font-family: 'Rock Salt';
    font-size: 3em;
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 0.5em 0;
}

footer{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0px;
    text-align: center;
}
footer a{
    margin: 0 0.5em;
}



/* Device overrides */

@media (min-width: 768px){

    /* Tablet */

    body{
        background: url('/img/bg/4-1280.jpg') no-repeat fixed center center / cover black;
    }

    #Name{
        font-family: 'Rock Salt';
        font-size: 3em;
        text-align: right;
        padding: 0.5em;
    }

    footer{
        width: auto;
        text-align: left;
        border-radius: 0px 15px 0px 0px;
    }

}

@media (min-width: 992px){

    /* Desktop */

    body{
        background: url('/img/bg/4-2000.jpg') no-repeat fixed center center / cover black;
    }

    #Name{
        font-family: 'Rock Salt';
        font-size: 4vw;
        border-radius: 0.3em 0 0 0.3em;
        text-align: right;
        padding: 0.5em;
    }

    footer{
        width: auto;
        text-align: left;
        border-radius: 0px 15px 0px 0px;
    }

}