/* For devices with width smaller than 400px */
/*
body {
    //background-image: url('birb-small.jpg');
    min-height: 2000px;
    padding-top: 70px;
    background: #d9ecf8;
}

#box {
        //padding: 40px;
        background: #d9ecf8;
        overflow: auto;
        width: 90%
}
*/
/* For larger devices */
/*
@media only screen and (min-device-width: 1800px) {
    body {
        background: url("/static/images/alice_small.jpg") no-repeat;
        background-size: auto; //auto;
        padding-top: 0px;
   }
    #box {
        //padding: 40px;
        background: #d9ecf8;
        position: fixed;
        top: 120px;
        left: 50%;
        margin-top: -70px;
        margin-left: 0px;
        height: 100vh;
        overflow: auto;
        width: 50%
    }
}


*/