:root {
	--black: black;
	--white: white;
	--grey: grey;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

@font-face {
	font-family: bct;
	src: url('fonts/bct.woff2') format('woff2'),
		url('fonts/bct.woff') format('woff'),
		url('fonts/bct.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
	}

html {
	margin: 0;
	padding: 0;
	cursor: crosshair;
	font-family: bct;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}
	
*, *::before, *::after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
	}
	
body {
	position: fixed;
	display: flex;
	z-index: -9;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	overflow: hidden;
	margin: 0;
	padding: 0;
	height: 100dvh;
	width: 100dvw;
	background: #dddddd;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-webkit-animation: fadein 1s ease-in;
	-moz-animation: fadein 1s ease-in;
	-o-animation: fadein 1s ease-in;
	animation: fadein 1s ease-in;
	}

h1, h2, h3 {
	display: flex;
	text-align: center;
	font-size: 2em;
	letter-spacing: .15em;
	line-height: 1.6em;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	}
	
h1 {
	font-size: 1em;
	}
	
h2 {
	font-size: 1em;
	}
	
h3 {
	font-size: 2.2em;
	}

.letter {
	opacity: 0;
	display: flex;
	}

.logo-container {
	width: 120px;
	height: 120px;
	position: relative;
	margin: 20px;
	-webkit-animation: spin 2s ease-in-out infinite 2s;
	-moz-animation: spin 2s ease-in-out infinite 2s;
	-o-animation: spin 2s ease-in-out infinite 2s;
	animation: spin 2s ease-in-out infinite 2s;
	}

.half {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	}

.black {
	background: black;
	clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%);
	}

.white {
	background: white;
	clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
	}

@-webkit-keyframes spin {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
	}
@-moz-keyframes spin {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
	}
@-o-keyframes spin {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
	}
@keyframes spin {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
	}

@-webkit-keyframes fadein {
	0% {opacity: 0;}
	100% {opacity: 1;}
	}
@-moz-keyframes fadein {
	0% {opacity: 0;}
	100% {opacity: 1;}
	}
@-o-keyframes fadein {
	0% {opacity: 0;}
	100% {opacity: 1;}
	}
@keyframes fadein {
	0% {opacity: 0;}
	100% {opacity: 1;}
	}