/* CSS Mini Reset */
html, body, div, h1, h2, h3, h4, h5, h6, p { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: normal; }
a { color: inherit; text-decoration: none; }

/* Site Styles */
@font-face {
	font-family: F;
	src: 	url('assets/fonts/F.woff2') format('woff2'),
			url('assets/fonts/F.otf') format('opentype');
}

body {
	width: 100%;
	height: 100vh;
	height: -webkit-fill-available;

	margin: 0 !important;
	padding: 0 !important;

	overflow-x: hidden;

	background-color: #fff;
	color: #000;

	font-family: F, sans-serif;
	font-size: 32px;

	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	cursor: default;

	display: flex;
	align-items: center;
	justify-content: center;
}

.hidden {
	opacity: 0 !important;
}

#indicator {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background-color: black;
	will-change: scale;
}

#caption {
	position: absolute;
	bottom: 8px;
	will-change: opacity;
}

@media screen and (max-width: 425px) {
	body {
		font-size: 28px;
	}
}
