body, html, div {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif, Verdana, Arial;
    font-size: inherit;
}

body{
    overflow:hidden;
}

.poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.show-xs {
    display: none;
}

.btn.show-xs .label {
    display: block;
}

@media (max-width: 320px) {
    .show-xs {
        display: block;
    }


    .hide-xs {
        display: none;
    }
}