/* 
	Type Faces
*/

@font-face {
	font-family: ABC Diatype Mono;
	font-weight: 500;
	font-style: normal;
	src: url("../fonts/ABCDiatypeMono-Medium.otf") format("opentype");
}

@font-face {
	font-family: ABC Diatype Mono;
	font-weight: 500;
	font-style: italic;
	src: url("../fonts/ABCDiatypeMono-Medium.otf") format("opentype");
}


@font-face {
	font-family: ABC Diatype;
	font-weight: 600;
	font-style: normal;
	src: url("../fonts/ABCDiatype-Bold.otf") format("opentype");
}

@font-face {
	font-family: ABC Diatype;
	font-weight: 600;
	font-style: italic;
	src: url("../fonts/ABCDiatype-BoldItalic.otf") format("opentype");
}


/* 
	Text
*/

.t-regular {
	font-weight: 500;
}

.t-bold {
	font-weight: 600;
}

.t-ultrabold {
	font-weight: 900;
}

.t-italic {
	font-style: italic;
}

.t-uppercase {
	text-transform: uppercase;
}

.t-lowercase {
	text-transform: lowercase;
}

.t-left {
	text-align: left;
}

.t-center {
	text-align: center;
}

.t-right {
	text-align: right;
}

.t-gray {
	color: rgb(136, 136, 136);
}

.t-balance {
	text-wrap: balance;
}

/* Typefaces */

.t-mono {
	font-family: "ABC Diatype Mono", monospace;
	text-transform: uppercase;
	letter-spacing: 0.1em !important;
	font-weight: 400;
}

/* 
	Type Sizes 
*/
.t-caption {
	font-size: 0.8rem; /* 14px */
	line-height: 1.25em;
}

.t-body {
	font-size: 1.125rem; /* 18px */
	line-height: 1.25em;
	letter-spacing: 0.015em;
}

.t-h3 {
	font-size: 1.25rem;
	line-height: 1.15em;
	letter-spacing: -0.01em;
}

.t-h1 {
	font-size: 1.75rem; /* 32px */
	line-height: 1.1em;
	letter-spacing: -0.02em;
}

/* Desktop */
@media only screen and (min-width: 64rem) {
	.t-caption {
		font-size: 0.8rem; /* 14px */
	}

	.t-body {
		font-size: 1.125rem; /* 18px */
	}

	.t-h3 {
		font-size: 1.375rem; /* 22px */
	}

	.t-h2 {
		font-size: 1.65rem; /* 28px */
	}

	.t-h1 {
		font-size: 1.9rem; /* 32px */
	}

	.t-uber {
		font-size: 2.5rem; /* 52px */
	}
}

/* Desktop 4K */
@media only screen and (min-width: 100rem) {
	.t-caption {
		font-size: 1rem;
	}

	.t-body {
		font-size: 1.25rem; 
	}

	.t-h3 {
		font-size: 1.5rem; 
	}

	.t-h2 {
		font-size: 2rem; 
	}

	.t-h1 {
		font-size: 2.5rem;
	}
}

/*
	Spacing
*/

.t-spacing-xs {
	letter-spacing: -0.02em;
}

.t-spacing-m {
	letter-spacing: 0.05em;
}

/*
	Line Height
*/

.t-line-height-xs {
	line-height: 1.1em;
}

.t-line-height-s {
	line-height: 1.2em;
}

.t-line-height-m {
	line-height: 1.3em;
}


