
/* BEGIN: COMMON ------------------------------------------------------------ */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
	font-weight: 700;
	outline: none;
	text-decoration: none;
}

a.with-arrow {
	padding-bottom: calc( var( --content-gap ) * 0.5 );
	padding-top: calc( var( --content-gap ) * 0.5 );
}

	a.with-arrow > img {
		display: inline-block;
		height: 0.75em;
		width: 0.5em;
		margin-right: 0.25em;
	}

	@keyframes a-with-arrow-animation {
		0% { transform: translate( 0, 0 ) }
		50% { transform: translate( -1em, 0 ) }
		100% { transform: translate( 0, 0 ) }
	}

	a.with-arrow:hover > img {
		animation: a-with-arrow-animation var( --animation-duration ) ease-in-out;
	}

address {
	font-style: inherit;
}

body {
	color: white;
	font-family: 'Inter', sans-serif;
	font-size: calc( 16px * ( 1 + var( --screen-increment ) * 0.00625 ) );
	font-weight: 600;
	line-height: 1.625;
	text-shadow: 0px 0px 2px #666;
}

html {
	scroll-behavior: smooth;
}

img.bullet {
	height: 0.875em;
	margin-bottom: -0.0625em;
	margin-right: 0.125em;
}

.button.play,
.button.pause {
	cursor: pointer;
	display: block;
	height: 7em;
	position: absolute;
	margin: 1em;
	z-index: 3;
	transition:
		opacity
		var( --animation-duration )
		var( --animation-duration )
		ease-in-out;
}

.button.play {
	left: calc( 50% - 5em );
	top: calc( 50% - 5em );
	opacity: 1;
}

.button.pause {
	bottom: 0;
	height: 3em;
	left: 0;
	opacity: 0;
}

.button.play.hidden {
	opacity: 0;
}

.button.pause.show {
	opacity: 1;
}

/* END: COMMON -------------------------------------------------------------- */
