@mixin desktop {
	@media only screen and (min-width: 1000px) {
		@content;
	}
}

@mixin mobile {
	@media only screen and (max-width: 1000px) {
		@content;
	}
}
