html {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Oxygen', sans-serif;
    background-color: #0f1010;
}

body {
    position: relative;
    width: 100%;
    height: 100%;
}

* {
    box-sizing: border-box;
}

.mobile {
    display: none;
    position: absolute;
    width: 100%;
    top: 50%;
    padding: 0 30px;

    font-size: 14px;
    color: #fff;

    transform: translate3d(0, -50%, 0);
}

.mobile span {
    color: #ccc;
    text-decoration: underline;
}

.mobile a {
    color: #ccc;
}

.logo {
    position: absolute;
    left: 75%;
    top: 50%;
    width: 371px;
    height: 137px;
    margin-left: -185px;
    margin-top: -60px;
    background-size: 371px 137px;
    background-image: url(../images/logo.png);
    pointer-events: none;
    opacity: 0;
}
@media (max-width: 780px) {
    .logo {
        left: 50%;
    }
}

.footer {
    position: absolute;
    text-align: right;
    left: 0;
    width: 100%;
    bottom: 20px;
    padding-right: 20px;

    font-size: 16px;
}

.footer span {
    display: inline-block;
    transform: translate3d(0, 50px, 0);
}

.footer a {
    color: #ccc;
}
