@font-face {
    font-family: Gothic;
    src: url('../fonts/gothic.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    font-weight: 100;
}

body {
    background: #000;
    color: #fff;
    font-family: Gothic, Century Gothic;
    text-align: center;
    text-shadow: 0 0 5px #000;
}

::selection {
    color: #fff;
    background: #fff;
}

::-moz-selection {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
}

a {
    color: #fff;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.jpg') no-repeat #000;
    background-position: 50% 50%;
    background-size: cover;
}

#field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 25%;
    background: #000;
    font-size: 2em;
    text-align: center;
    text-transform: uppercase;
}

#loading p {
    opacity: 0;
}