html
{
    background-color: #000;
    background-image: none;
    font-family: 'Mohave';
    font-size: 1.1em;
    color: #FFF;
}
body, table
{
    margin: auto;
    width: 50%;
}
h1
{
    font-size: 1.3em;
}
p
{
    font-size: 1em;
}
a
{
    color: #629cff;
}
a:hover
{
    color: #93cdff;
    text-shadow: 1px 1px 3px #FFF;
    transition: 0.5s;
}
input, select
{
    background-color: #202020;
    border: 1px solid #545863;
    border-radius: 5px;
    color: #FFF;
    font-family: 'Mohave';
    font-size: 0.8em;
    padding: 0.5em;
}
input:disabled
{
    background-color: #000;
    border-color: #222429;
    color: #BEBEBE;
}
/* Mobile Devices */
@media screen and (max-width: 600px)
{
    body, table
    {
        margin: unset;
        width: 100%;
    }
    input[type=number], input[type=text]
    {
        width: 120px;
    }
}