/* Andrés Carne de Res — Main Stylesheet */
/* Built by Contra Studio */

/* Typography */
@import url('base/typography.css');

/* Tokens */
@import url('tokens/color.css');
/* Texture tokens (--texture-*) are generated in inc/design-tokens.php. */
@import url('tokens/typography.css');

/* Base */
@import url('base/type.css');

/* ---------------------------------------- */

*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	font-family: var(--font-secondary);
	background-color: var(--color-cream);
}


.remove-on-mobile {
	display: block;
}

.remove-on-desktop {
	display: block;
}

@media (max-width: 767px) {
	.remove-on-mobile {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.remove-on-desktop {
		display: none !important;
	}
}

