@font-face{
  font-family: CanelaWeb-Regular;
  font-style: normal;
  font-weight: 400;
  text-rendering: geometricPrecision;
  src: url('../fonts/CanelaWeb-Regular.woff') format('woff'),
  	url('../fonts/CanelaWeb-Regular.woff2') format('woff2');
}
@font-face{
  font-family: Helvetica-Bold;
  font-style: normal;
  font-weight: 400;
  text-rendering: geometricPrecision;
  src: url('../fonts/Helvetica-Bold.woff') format('woff'),
  	url('../fonts/Helvetica-Bold.woff2') format('woff2');
}
::-webkit-scrollbar{
  display: none;
}
::-webkit-scrollbar-button{
  display: none;
}
:root{
	--bg-color: /*#0d1018*/#111;
	--bg-color-black: #000;
    --txt-color: white;
    --progress: 0;
}
.--ext-link{
	box-sizing: border-box;
	position: absolute;
	display: inline-block;
	width: 22px;
	height: 22px;
	border: 2px solid;
	transform: scale(0.6);
	top: -2px;
	border-radius: 4px
}
.--ext-link::after, .--ext-link::before{
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	right: 4px
}
.--ext-link::after{
	width: 10px;
	height: 2px;
	background: currentColor;
	transform: rotate(-45deg);
	bottom: 8px
}
.--ext-link::before{
	width: 6px;
	height: 6px;
	top: 4px;
	border-top: 2px solid;
	border-right: 2px solid
}

a{
	text-decoration: none;
	position: relative;
	color: var(--txt-color);
}
.nav-item a{
	padding: 10px 0;
}
.nav-item a::before, .container-item span a::before{
	content: "";
	position: absolute;
	bottom: 7px;
	width: 100%;
	height: 1px;
	background: var(--txt-color);
	opacity: 0.5;
}
canvas{
	opacity: 0;
}
canvas.--visible{
	opacity: 1;
}
noscript{
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-color);
	z-index: 999;
}
noscript::after{
	content: 'JavaScript is disabled. For the best experience, please enable JavaScript & reload the page. \a\a \00a9  rage.dev MMXXII';
	display: inline-block;
	position: absolute;
	top: 50px;
	left: 50px;
	right: 50px;
	font-family: Helvetica-Bold, sans-serif;
	color: var(--txt-color);
	font-size: 0.75rem;
	text-transform: uppercase;
	line-height: 150%;
}
html{
	height: 100%;
}
body{
	margin: 0;
	height: 100%;
	background: var(--bg-color-black);
	overflow: hidden;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
canvas{ 
	display: block; 
	position: fixed;
	z-index: -1; 
	left: 0;
	top: 0;
}
main{
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    cursor: grab;
}
.--pointer-events-none
{
	pointer-events: none !important;
}
.container-items{
    width: auto;
    display: flex;
    flex-direction: row;
    position: fixed;
    align-items: center;
    justify-content: center;
    will-change: transform;
}
.container-items div{
	position: relative;
	width: 50vw;
	height: 27.5vw;
	margin: 0 5vw;
	will-change: transform;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.container-items a{
	display: block;
	height: 100%;
	width: 100%;
	overflow: hidden;
	cursor: url('ext-link.svg'), auto;	
}
.container-items span{
	position: absolute;
	bottom: -25px;
	right: 0;
	display: block;
	white-space: nowrap;
	font-family: Helvetica-Bold, sans-serif;
	color: #999;
	font-size: 0.5rem;
	text-transform: uppercase;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.25s ease, visibility 0s 0.66s;
}
.container-items:not(.--transiting) div.active span{
	visibility: visible;
	opacity: 1;
	transition: opacity 0.66s ease 0.75s, visibility 0s 0s;
}
.container-items span a{
	display: inline;
	color: var(--txt-color);
	font-size: 0.75rem;
	padding: 10px 0;
	margin-left: 3px;
}
img.item-image{
	visibility: hidden;
	opacity: 0.33;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;

	will-change: transform;
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
}
.container-text{
	width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.container-year, .container-error{
	overflow: hidden;
	text-align: center;
	padding: 0 50px;
	display: inline-block;
	letter-spacing: -0.4rem;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.container-error{
	letter-spacing: -0.3rem;
}
.container-error.--404::after{
	content: "Oops — page or content not found.";
}
.container-error.--403::after{
	content: "Access denied — content inaccessible.";
}
.container-error::after{
	display: block;
	font-family: Helvetica-Bold, sans-serif;
	color: var(--txt-color);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: initial;
	position: relative;
	text-align: center;
	margin-top: 10px;
}
.container-year span, .container-error span{
	font-family: CanelaWeb-Regular, sans-serif;
	color: var(--txt-color);
	font-size: 8rem;
	display: inline-block;
}
.container-year span:nth-of-type(1), .container-year span:nth-of-type(2){
	-webkit-text-stroke: 1px #f4f4f4;
    text-stroke: 1px #f4f4f4;
    color: transparent;
}
nav.nav-item.--top{
	font-family: Helvetica-Bold, sans-serif;
	color: var(--txt-color);
	font-size: 0.75rem;
	text-transform: uppercase;
	text-align: center;
	padding-top: 50px;
}
nav.nav-item.--bottom-right{
	display: inline-flex;
	position: absolute;
	right: 50px;
	bottom: 50px;
}
nav.nav-item.--bottom-right div{
	font-family: Helvetica-Bold, sans-serif;
	color: var(--txt-color);
	font-size: 0.75rem;
	text-transform: uppercase;
	text-align: center;
	margin-left: 25px;
}
nav.nav-item.--bottom-left{
	font-family: CanelaWeb-Regular, sans-serif;
	color: var(--txt-color);
	font-size: 0.9rem;
	text-transform: uppercase;
	text-align: center;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	position: absolute;
	left: 50px;
	bottom: 50px;
	overflow: hidden;
	visibility: hidden;
}
nav.nav-item.--bottom-left.--load{
	visibility: visible;
}
nav.nav-item.--bottom-left span{
	display: block;
	position: relative;
	height: 1px;
	width: 70px;
	transform: scaleX(0);
	transform-origin: left;
	margin: 0 10px;
	background: #888;
	transition: 0.33s transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
nav.nav-item.--bottom-left.--load span{
	transform: scaleX(1);
}
nav.nav-item.--bottom-left span::before{
	content: "";
	display: block;
	height: 100%;
	width: var(--progress);
	background: var(--txt-color);
	transition: width 0.75s cubic-bezier(0.87, 0, 0.13, 1);
}
nav.nav-item.--bottom-left div{
	display: inline-block;
}
@media (max-width: 565px), (max-height: 565px){
	aside{
		position: fixed;
		background: var(--bg-color-black);
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	aside::after{
		white-space: pre-wrap;
		content: 'Mobile viewports are not currently supported. Please increase your viewport size. \a\a Content Creator — Developer — 3D \a \00a9  rage.dev MMXXII';
		display: inline-block;
		position: absolute;
		top: 35px;
		left: 35px;
		right: 35px;
		font-family: Helvetica-Bold, sans-serif;
		color: var(--txt-color);
		font-size: 0.75rem;
		text-transform: uppercase;
		line-height: 150%;
	}
	aside.--404::after{
		content: '404 — Page or content not found \a\a \00a9  rage.dev MMXXII';
	}
	aside.--403::after{
		content: '403 — Content not accessible \a\a \00a9  rage.dev MMXXII';
	}
}
@media (min-width: 800px){
	.container-year span, .container-error span{
		font-size: 12rem;
	}
}
@media (min-width: 1200px){
	.container-year span, .container-error span{
		font-size: 14.5vw;
	}
	nav.nav-item.--bottom-left span{
		width: 90px;
	}
}
@media (min-width: 1600px){
	.container-year span, .container-error span{
		font-size: 16vw;
	}
	nav.nav-item.--bottom-left span{
		width: 9vw;
	}
}
@media (min-aspect-ratio: 16/9){
	.container-year span, .container-error span{
		font-size: 30vh;
	}
	.container-items div{
		width: 85.9375vh;
		height: 47.2656415vh;
	}
}