@charset "utf-8";
/* CSS Document */
/* @media only screen and (max-width: 4000px) and (min-width: 768px) { */


/* media query ideas for Flask 

.post {
    background: none no-repeat center center fixed;
}

@media only screen and (max-device-width: 480px) {
    .post {
      background-image: url("{{ get_image_url(post, 480) }}"); 
    }
}

@media only screen and (max-device-width: 1224px) {
    .post {
      background-image: url("{{ get_image_url(post, 1224) }}"); 
    }
}

*/





