/* base styles */

html
{
	font-size: 16px;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after
{
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

body
{
	background: rgba(255,255,255, 1.0);
	color: #000000;
	cursor: url('../img/cursor-clay.svg'), auto;
}

p
{
	line-height: 140%;
	font-family: 'indivisible-light';
	font-size: 2rem;
}

a
{
	color: #440088;
	cursor: url('../img/cursor-purple.svg'), auto;
	text-decoration-thickness: 0.0875rem;
}

img
{
	display: block;
}

#content, #images
{
	position: relative;
	margin: auto;
	left: 0;
	right: 0;
	pointer-events: auto;
	z-index: 3;
}

#content p:not(:first-child)
{
	text-indent: 2.5rem;
	margin-top: 0.625rem;
}

#content p:last-child
{
	margin-top: 2.5rem;
	text-indent: 0;
}

#images
{
	margin-bottom: 5rem;
}

#images img
{
	margin: auto;
	left: 0;
	right: 0;
	height: auto;
}

#shapes
{
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 1;
}

#shapes img
{
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 15rem;
	height: auto;

	-webkit-animation: blink 16s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation: blink 16s;
	-moz-animation-iteration-count: infinite;
	-o-animation: blink 16s;
	-o-animation-iteration-count: infinite;
}

#frame-border
{
	position: fixed;
	border: 4px solid #dd6622;
	width: 100%;
	height: 100%;
	z-index: 6;
	pointer-events: none;
}

#sticky
{
	position: fixed;
	background: rgba(255,255,255, 0.96);
	width: 100%;
	height: 5rem;
	z-index: 5;
	display: flex;
	align-items: center;
}

#sticky p
{
	position: absolute;
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.75rem;
	font-family: 'dia-black';
	text-transform: uppercase;
	text-align: center;
}

.desktop_hide
{
	display: none;
}


/* pre_loader and other loader styles */

#pre_loader, #rotate-warning
{
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(255,255,255, 1.0);
}

#rotate-warning items
{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#pre_loader
{
	z-index: 8;
}

#rotate-warning
{
	display: none;
	z-index: 7;
}

#rotate-warning p
{
	font-family: 'indivisible-semibold';
	font-size: 1rem;
	text-transform: uppercase;
	text-align: center;

	-webkit-animation: blink 0.8s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation: blink 0.8s;
	-moz-animation-iteration-count: infinite;
	-o-animation: blink 0.8s;
	-o-animation-iteration-count: infinite;
}

#pre_loader img
{
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
	width: 15rem;

	-webkit-animation: blink 0.8s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation: blink 0.8s;
	-moz-animation-iteration-count: infinite;
	-o-animation: blink 0.8s;
	-o-animation-iteration-count: infinite;
}

@-webkit-keyframes blink {
	0% {
			opacity: 1;
	}
	50% {
			opacity: 0;
	}
	100% {
			opacity: 1;
	}
}

@-moz-keyframes blink {
	0% {
			opacity: 1;
	}
	50% {
			opacity: 0;
	}
	100% {
			opacity: 1;
	}
}

@-o-keyframes blink {
	0% {
			opacity: 1;
	}
	50% {
			opacity: 0;
	}
	100% {
			opacity: 1;
	}
}