/* HALF N HALF SCROLL https://stackoverflow.com/questions/15453410/independent-column-scroll-in-html-page */

@font-face {
	font-family: Daubenton;
	src: url("../fonts/daubentonwebfont.woff");
}
@font-face {
	font-family: Minipax;
	src: url("../fonts/Minipax-Regular.woff");
	font-weight: normal;
}

* {
	/*font-family: Minipax;*/
	font-family: serif;
	font-size: 20px;
}

::-webkit-scrollbar { /* WIDTH */
	width: 3px;
}

::-webkit-scrollbar-track { /* BACKGROUND */
	background: white; 
	/*background: #999;*/
}

::-webkit-scrollbar-thumb { /* HANDLE */
	background: black; 
}

video {
	width: 100%;
	height: auto;
	grid-column-start: 2;
	grid-column-end: span 1;
	
	background-color: #ccc;

	mix-blend-mode: multiply;
}

iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	grid-column-start: 2;
	grid-column-end: span 1;
	
	background-color: #ccc;

	mix-blend-mode: multiply;
}

.vimeo {
	grid-column-start: 2;
	grid-column-end: span 1;

	/*padding: 56.25% 0 2.5rem 0;*/
	padding: 56.25% 0 0 0;
	
	mix-blend-mode: multiply;
	background-color: #ccc;
}

.halfcontainer {
	grid-column-start: 2;
	grid-column-end: span 1;
	margin-bottom: -0.25rem;
}

.half {
	width: calc(50% - 0.3rem);
	display: inline-block;
}

.half-right {
	margin-left: 0.3rem;
}

img {
	width: 100%;
	grid-column-start: 2;
	grid-column-end: span 1;
	
	background-color: #ccc;

	mix-blend-mode: multiply;
}

img:hover {
	/*filter: grayscale(100);*/
}

#ninegif {
	width: 100%;
	aspect-ratio: 4 / 4.9;
	grid-column-start: 2;
	grid-column-end: span 1;

	background-image: url('../images/1999/4a030879-84b5-4c61-b401-3df5f09cd652_Concrete+-+1999+Identity+-+Poster.gif');
	background-size: cover;
	background-position: center;

	mix-blend-mode: multiply;
}

.space {
	grid-column-start: 2;
	grid-column-end: span 1;

	height: 2rem;
}

p {
	margin-top: 0;
}

.column-title {
	position: sticky;
	top: 0rem;

	grid-column-start: 1;
	grid-column-end: span 2;

	/*font-family: Daubenton;*/
	font-family: serif;
	font-size: 1rem;
	word-break: break-all;

	mix-blend-mode: exclusion;
	z-index: 1000000;
	color: white;
}

.subtitle {
	line-height: 1.1rem;
	margin-top: -0.2rem;
	margin-bottom: 0.5rem;
}

.keywords {
	grid-column-start: 1;
	grid-column-end: span 1;

	/*font-family: Daubenton;*/
	font-family: sans-serif;
	font-size: 0.5rem;

	height: 0;
}

a {
	margin-top: 0px;
	text-decoration: none;

	font-size: 1rem;
}

.more-works {
	font-family: sans-serif;
	font-size: 0.5rem;
	color: white;
}

.left-link {
	color: white;
}

.right-link {
	color: white;
}

a:hover {
	/*text-decoration: underline;*/
	font-family: serif;
	font-size: 0.6rem;

	cursor: alias;
}

.main-title {
	position: fixed;
	/*padding: 4px 5px 4px 5px;*/
	padding: 0;

	font-family: sans-serif;
	font-size: 0.5rem;
	text-align: center;
	white-space: nowrap;

	/*background-color: black;*/
	/*border: 1px solid white;*/
	mix-blend-mode: exclusion;
}

.main-title.black {
	color: black;
}

.main-title.white {
	color: white;
}

.wrapper {
	position: fixed;
	top: 0px;
	left: 0px;

	width: 100%;
    height: 100vh;
}

.side-wrapper {
	display: grid;
	grid-gap: 0.5rem;	
	grid-template: 1fr 1fr 1fr 1fr 1fr 1fr / 1fr 3fr; /* ROWS / COLUMNS */

	width: calc(50% - 1rem);
    height: calc(100% - 1rem);
    padding: 0.5rem;
    overflow: auto;

	/*background-color: #999;*/
	/*color: white;*/
	background-color: white;
	color: black;

	font-size: 0.5rem;
}

.left {
	float: left;

	background-color: white;
	color: black;

}

.right {
	float: right;
}