html, body {
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
}
body {
    background: rgb(0,0,0);
    background-size: 100% 100%;
    color: #fbf800;
    margin: 0;
    overflow: hidden;
}
#containermessage {
    display: none;
    min-height: 100%;
    margin: 0 auto;
    padding: 0rem 2rem 0rem 2rem;
    position: relative;
}
#information {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.box {
    border: 2px solid #fbf800;
    border-radius: 1em;
    padding: 1rem;
    word-break: break-all;
}


#container {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
/*    transition-property: all;
    transition-duration: 1.0s;*/
}

@media all and (orientation: landscape) {
    [data-device="desktop"] #container {
        width: 20%;
    }

    [data-device="mobile"] #container {
        width: 30%;
    }
}

@media all and (orientation: portrait) {
    [data-device="desktop"] #container {
        width: 40%;
    }
    [data-device="mobile"] #container {
        width: 40%;
    }
}

#logo {
    width: 100%;
    opacity: 0;
    animation-name: logoFade;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}


.fadeClass {
    animation-name: logoFade;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

#subDiv {
    opacity: 0;
}
.heightAnimC {
    width: 0%;
    animation-name: heightAnim;
    animation-duration: 0.5s;
    animation-delay: 0.0s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.subDivAnim {
    animation-name: logoFade;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes heightAnim {
    0%   {
        width: 0%;
    }
    100%   {
        width: 100%;
    }
}


.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.bgAnimation {
    animation-name: bgFade;
    animation-duration: 0.3s;
    animation-delay: 0.2s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}
@keyframes bgFade {
    0%   {
        opacity:0
    }
    100%   {
        opacity:1;
    }
}

@keyframes logoFade {
    0%   {
        transform: scale(0.9,0.9);
        opacity:0
    }
    100%   {
        transform: scale(1,1);
        opacity:1;
    }
}

#progress {
    width: 100%;
    height: 4px;
    margin: 2em 0 2em 0;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
}

#progress:after {
    position: absolute;
    content: '';

    width: 0%;
    height: 4px;

    left: 0;
    top: 0;

    background-color: white;
}

#progress.loading:after {
    transition: width 90s cubic-bezier(.13, .87, .45, .82);
    width: 90%;
}

#progress.finishing:after {
    transition: width 0.1s ease-in-out;
    width: 100%;
}

#unsupported {
    font-size: 1.2em;
    font-family: sans-serif;

    color: white;
    text-align: center;
}

#unsupported p {
    color: #fbf800;
}

button {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);

    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.4vh;

    font-style: italic;
    padding: 0.4em 1em;

    font-size: 100%;
}
