@font-face
{
    font-family: font;
    src: url("SourceSansPro-Light.otf");
}

body
{
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    background: #eeeeee;
    font-family: font;
}

.splash
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #eeeeee;
    background-image: url("splash.png");
    background-position: 50% 50%;
    background-size: 60%;
    background-repeat: no-repeat;
}

@keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}

.splash-fade
{
    animation: fadeOut ease 1s;
}

.view
{
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
}

.version
{
    position: fixed;
    bottom: 0.5rem;
    left: 0.5rem;
    user-select: none;
}

@media (max-width: 1000px)
{
    .splash
    {
        background-size: 95%;
    }
}