html {
    background-image: url("../images/strawberry-cheesecake.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    background-color: rgba(100, 100, 100, 0.65);
    color: #f0f0f0;
    padding: 0px 50px;
}

.gfx {
    width: 100%;
}

.banner {
    width: 100%;
}

/*.crust {*/
/*    background-image: url("../images/crust.gif");*/
/*    padding-left: 20px;*/
/*}*/

/*.pouring {*/
/*    background-image: url("../images/pouring.gif");*/
/*}*/

.mobile {
    display: block;
}

.desktop {
    display: none;
}

.text-left {
    animation: textLeft 10s infinite;
}

.directions {
    padding-left: 10%;
}

@keyframes textLeft {
    from { left: 0px; }
    to { left: 400px; }
}

@media (min-width: 550px) {
    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }
}
