/* --- MEYER RESET --- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Padding Reset? */

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* Fonts */

@font-face {
	font-family: 'Raster Grotesk Compact Smooth';
	src: url(fonting/FKRasterGroteskCompact-Smooth.woff2);
}
@font-face {
	font-family: 'Raster Grotesk Compact Sharp';
	src: url(fonting/FKRasterGroteskCompact-Sharp.woff2);
}

@supports (font-variation-settings: normal) {
  @font-face {
      font-family: 'Raster Grotesk Variable';
      src: 	url('fonting/FKRasterGroteskCompact.woff2') format('woff2 supports variations'),
              url('fonting/FKRasterGroteskCompact.woff2') format('woff2-variations');
      font-variation-settings: "jnts" 100, "pxls" 100;
  }
}

@font-face {
	font-family: "IBM Plex Sans Roman";
	src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/85648/IBMPlexSansVar-Roman.ttf");
}

/* Styles */

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: white;
}

.container {
	width: 100%;
	height: 100%;
}

.logo {
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Raster Grotesk Variable', sans-serif;
    font-size: 12vmax;
	color: black;
	text-shadow: lime 0px 2px;
}

.breathing {
	font-variation-settings: 'jnts' 100, 'pxls' 100;
	animation: breathing 12000ms cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite both;
	/* animation-delay: var(--delay); */
	/* --delay: calc((var(--char-index) + 1) * 400ms); */
}

@keyframes breathing {
	0% {
		font-variation-settings: 'jnts' 100, 'pxls' 100;
	}
	12.5% {
		font-variation-settings: 'jnts' 100, 'pxls' 0;
	}
	25% {
		font-variation-settings: 'jnts' 0, 'pxls' 0;
	}
	37.5% {
		font-variation-settings: 'jnts' 0, 'pxls' 100;
	}
	50% {
		font-variation-settings: 'jnts' 100, 'pxls' 100;
	}
	62.5% {
		font-variation-settings: 'jnts' 0, 'pxls' 100;
	}
	75% {
		font-variation-settings: 'jnts' 0, 'pxls' 0;
	}
	87.5% {
		font-variation-settings: 'jnts' 100, 'pxls' 0;
	}
	100% {
		font-variation-settings: 'jnts' 100, 'pxls' 100;
	}
}