#soup-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    z-index: 9002;
    font-size: 64px;
    color: #fff;
}

.soup-title {
    /*font-size: 5vw;*/
    font-size: 8vh;
    /*font-size: 2.5rem;*/
    font-weight: bold;
    /*text-shadow: 2px 2px 6px rgba(0,0,0, .5);*/
}

.soup-desc {
    /*font-size: 3vw;*/
    font-size: 4vh;
    /*font-size: 1.5rem;*/
    font-weight: bold;
}

@media only screen and (max-width: 500px) {
    .soup-title {
        font-size: 10vw;
    }

    .soup-desc {
        font-size: 5vw;
    }
}

html, body {
    width: 100%;
    height: 100%;
    /*background-color: #EEE;*/
    /*color: yellow;*/
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

#soup-container {
    width: 100%;
    height: 100%;
    min-width: 320px;
    min-height: 480px;
    position: relative;

    background: url(../images/3d-atm-blur-darkened2.jpg);
    background-size: cover;
}

.letters-wrap {
    position: absolute;
    overflow: hidden;
    display: inline-block;
}

.letters-wrap.mutable {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.letters-wrap.mutable .letter {
    position: absolute;
    left: 0;
    top: 0;
    transition: left 2s, top 2s, color 2s;
    /*color: yellow;*/
}

.letters-wrap.mutable .letter.active {
    color: rgba(0, 0, 0, .1);

    z-index: 9001;
}

.letters-wrap.position-data {
    top: 50%;
    left: 50%;
    /*opacity: 0.1;*/
    visibility: hidden;
    transform: translate(-50%, -50%);
}

#segments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.letter {
    /*display: inline-block;*/
}

button {
    z-index: 9001;
    position: relative;
}
