html, body {
    margin: 0;
    overflow: hidden;
    padding: 0;
}

body {
    background: #000 url('background.jpg') repeat;
    font-family: "Open Sans", sans-serif;
    min-width: 400px;
    width: 100vw;
}

a {
    color: #1e5f8d;
    text-decoration: none;
    transition: 0.1s ease-in-out;
}

a:hover {
    color: #fb9f10;
}

header {
    background: #fff;
    height: 3.2em;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #aaa;
    width: 100%;
}

.logo {
    display: inline-block;
    padding: 1em;
    border-right: 1px solid #eee;
}

.info {
    display: inline-block;
    padding: 1em;
    color: #555;
}

.info a {
    font-weight: bold;
    text-decoration: underline;
}

.info a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    display: inline;
}

li + li::before {
    content: '|';
}

.navigate ul li a {
    transition: all 0.2s ease-in-out;
    padding: 1em;
}

a:hover {
    color: #fb9f10;
}

.navigate ul li a.download {
    background: #fb9f10;
    border: solid 1px #fb9f10;
    color: #fff;
    font-size: 14px;
    padding: 12px 14px;
    font-family: arial, sans-serif;
}

.navigate ul li a.download i {
    font-size: 16px;
    float: left;
}

.navigate a.download:hover {
    background: #1bbcff;
}

.navigate a.download span {
    font-size: 14px;
    display: inline-block;
    line-height: 14px;
}

.navigate a.first-latest {
    background: #e6e6e6;
    border: 1px solid #e6e6e6;
    color: #fff;
}

.coming-soon-container {
    margin: 20px auto;
    width: 400px;
}

.coming-soon {
    color: #DDD;
    cursor: pointer;
    background-image: url('hammer.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 400px;
    height: 400px;
    transform: rotate(45deg);
    transform-origin: 25% 75%;
}

.coming-soon:hover {
    animation: swing 0.8s ease-in infinite;
}

.coming-soon div {
    font-size: 24px;
    padding-top: 246px;
    transform: rotate(315deg) translate(-50%, 0%);
    transform-origin: 0% 0%;
    user-select: none;
}

@keyframes swing { 90% { transform:rotate(30deg); } }

@media (max-width: 799px) {
    .navigate ul li a {
        padding: 1em 0.75em;
    }
}

@media (max-width: 599px) {
    .navigate ul li a {
        padding: 1em 0.25em;
    }
}
