body {}

/*970px is the min width that screen size must be for backgrounds to show*/
@media only screen and (min-width: 970px) {
  /*FLEX SKINS START*/
  /*Set content width to 1100px*/
  body.flex-skin-active [class^="ContentLayout_container__"],
  body.flex-skin-docked [class^="ContentLayout_container__"] {
        width: 1100px !important;
        margin: auto !important;
        image-rendering: pixelated !important;
        background-color: #1d1d1d !important;
        background-image: url(/img/stone.png) !important;
    }

  body.flex-skin-active [class^="Header_container"],
  body.flex-skin-docked [class^="Header_container"] {
            margin: 0 !important;
  }
}

/*Breakpoint for smaller breakpoints with different nav*/

@media only screen and (max-width: 969px) {

}

/*Example Breakpoint for mobile breakpoint (may fall into the above)*/

@media only screen and (max-width: 600px) {
  body.flex-skin-active [class^="HamburgerMenu_container__"][class^="HamburgerMenu_container__"],
  body.flex-skin-docked [class^="HamburgerMenu_container__"][class^="HamburgerMenu_container__"] {
       z-index: 2147483649 !important;
   }
}

/*FLEX SKINS END*/