/* Basic styles */
@import url("styles.css");

/* Mobile */
@import url("mobile.css") only screen and (max-width:480px);

/* Tablet */
@import url("tablet.css") only screen and (min-width:481px) and (max-width:768px);

/* Desktop */
@import url("desktop.css") only screen and (min-width:769px);