div, body, html {
    margin: 0;
}

body {
    display: none;
}

body.unlocked {
    display: block;
}

#homeWrap {
    text-align: center;
}

#logoWrap {
    text-align: center;
    margin: 50px auto;
    padding: 10px;
}

#logoImg {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
}

#homeNav {
    list-style: none;
    padding: 0;
    margin: 50px auto;
    font-size: 0;
    text-align: center;
    max-width: 780px;
}

#homeNav li {
    position: relative;
    margin: 0 5px 10px;
    display: inline-block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    /*border: 1px solid #95a5a6;*/
    transition: border-color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

#homeNav li::after {
    /*background solid colour - remove if wanting see through*/
    background-color: #ecf0f1;
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: -2;
    position: relative;
}

#homeNav li:hover {
    border-color: #ff9900;
    transition-delay: 0.1s;
    /* transition: border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); */
}

#homeNav li i {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 50px;
    z-index: -1;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    /*background-color: #95a5a6;*/
    background-color: #7f8c8d;
    color: #ffffff;
    box-sizing: border-box;
    transition-delay: 0.1s;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    /* out quint - animation for mouse out + in if no transition on :hover */
}

#homeNav li:hover i {
    background-color: #ff9900;
    width: 100%;
    transition-delay: 0.1s;
    padding-left: calc(100% - 50px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#homeNav li a {
    position: absolute;
    left: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    line-height: 50px;
    font-family: 'Gill Sans', 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: left;
    padding: 0 10px 0 60px;
    /*color: #95a5a6;*/
    color: #7f8c8d;
    transition-delay: 0.1s;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

#homeNav li:hover a {
    color: #ffffff;
    cursor: pointer;
    transition-delay: 0.1s;
    padding: 0 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

p.versionText, p.copyText, p.littleText {
    font-family: 'Gill Sans', 'Open Sans', sans-serif;
    font-weight: 300;
    text-align: center;
    margin: 10px auto;
}

p.versionText {
    font-size: 20px;
    text-transform: uppercase;
    color: #ff9900;
}

p.copyText {
    font-size: 12px;
    color: #95a5a6;
    white-space: pre;
}

p.littleText {
    font-size: 12px;
    color: #95a5a6;
}

@media only screen and (max-device-width: 480px) {
    #homeWrap {
        padding: 10px 10px 5px 10px;
    }

    #logoImg {
        width: 100%;
        max-width: 300px;
        min-width: 0;
        height: auto;
        box-sizing: border-box;
    }

    #logoWrap {
        margin: 0;
    }

    #homeNav {
        text-align: center;
        padding: 0 10px 10px 10px;
        margin: 0;
    }

    #homeNav li {
        margin: 5px 0;
        width: 100%;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    /* iPad portrait */
    #homeNav > li {
        width: 230px;
    }
}
