﻿#menuHamburger{
    top: 20px;
    left: 20px;
}

#menuUser{
    top: 20px;
    right: 20px;
}

.stars, .twinkling, .clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    transform: translateZ(0);
}

.stars {
    background: #000 url(../images/stars.png) repeat top center;
    z-index: 0;
}

.twinkling {
    background: transparent url(../images/twinkling.png) repeat top center;
    z-index: 1;
    -moz-animation: move-twink-back 200s linear infinite;
    -o-animation: move-twink-back 200s linear infinite;
    -webkit-animation: move-twink-back 200s linear infinite;
    animation: move-twink-back 200s linear infinite;
}

.clouds {
    background: transparent url(../images/clouds.png) repeat top center;
    z-index: 3;
    overflow: auto;
    -moz-animation: move-clouds-back 200s linear infinite;
    -o-animation: move-clouds-back 200s linear infinite;
    -webkit-animation: move-clouds-back 200s linear infinite;
    animation: move-clouds-back 200s linear infinite;
}

.background {
    background-color: rgba(0,0,0,0.7);
}

.background::after {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.mainTitle {
    font-size: 90px;
    font-family: 'Audiowide', Helvetica, sans-serif;
    text-align: center;
    color: rgba(255,255,255,0.81);
    padding: 40px 40px 0 40px;
    -webkit-animation: neon-text 1.5s ease-in-out infinite alternate;
    -moz-animation: neon-text 1.5s ease-in-out infinite alternate;
    animation: neon-text 1.5s ease-in-out infinite alternate;
}

.description {
    font-size: 18px;
    font-family: "Audiowide", Helvetica, sans-serif;
    text-align: center;
    color: white;
    padding: 2% 20%;
}

#login, #register{
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

#Steam, #GOG{
    display: none;
    text-align: center;
}

/*#login .title{
    text-align: center;
}*/

#login div, #register div {
    padding-bottom: 10px;
}

#login input[type=password]{
    font-size: 24px;
    font-family: 'Segoe UI', Helvetica, sans-serif;
}

#login .wrap-bookend{
    padding-top: 20px;
}