* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: suisseFont;
	src: url(fonts/SuisseIntl-Regular.otf);
}

@font-face {
	font-family: suisseItalic;
	src: url(fonts/SuisseIntl-RegularItalic.otf);
}

@font-face {
	font-family: minchoFont;
	src: url(fonts/BIZUDMincho-Regular.ttf);
}

@font-face {
	font-family: subFont;
	src: url(fonts/Submarine-Regular.otf);
}

body {
	color: white;
	background-color: black;
	height: 100%;
	font-family: suisseFont;
	font-size: 14px;
}

i {
	font-family: suisseItalic;
}

a:link {
	color: white;
	background-color: transparent;
	text-decoration: none;
}

a:visited {
	color: white;
	background-color: transparent;
	text-decoration: none;
}

a:hover {
	color: pink;
	background-color: transparent;
	text-decoration: none;
}

a:active {
	color: pink;
	background-color: transparent;
	text-decoration: underline;
}

a.text {
	text-decoration: underline;
}


#activeLink {
	color: pink;
}

.row {
	display: flex;
}

.column {
	flex: 50%;
}

.mini-column {
	flex: 25%;
}

.info {
	font-size: 10px;
	color: rgb(180, 180, 180);
}

:target {
	color: pink;
}

.overlay {
	position: absolute;
	color: white;
	font-family: minchoFont;
	font-size: 200px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s	ease;
	background-color: black;
}

.mySlides:hover .overlay {
	opacity: .5;
}

.text {
	color: white;
	font-family: minchoFont;
	font-size: 6vw;
	position: absolute;
	text-decoration: underline;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: left;
}

.header {
	display: grid;
	position: fixed;
	mix-blend-mode: difference;
	margin: 0px;
	grid-template-columns: repeat(14,	7vw);
	grid-template-rows: repeat(1,	1fr);
	grid-column-gap: 8px;
	grid-row-gap: 8px;
	text-align: left;
	font-family: suisseFont;
	font-size: 14px;
}

.footer {
	display: grid;
	position: fixed;
	background-color: black;
	margin: 0px;
	bottom: 0px;
	grid-template-columns: repeat(14,	7vw);
	grid-template-rows: repeat(1,	3em);
	grid-column-gap: 8px;
	grid-row-gap: 0px;
	text-align: left;
	font-family: suisseFont;
	font-size: 14px;
}

ul {
	list-style-type: none;
	position: fixed;
	bottom: 0px;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: black;
	z-index: 2;
}

li {
	float: left;
}

li a {
	display: block;
	color: white;
	text-align: center;
	padding-right: 40px;
	text-decoration: none;
}

.parent {
	display: grid;
	margin: 0px;
	grid-template-columns: repeat(12,	7vw);
	grid-template-rows: repeat(12, 0);
	grid-column-gap: 8px;
	grid-row-gap: 8px;
	text-align: left;
	font-family: suisseFont;
	font-size: 14px;
}

.page {
	display: grid;
	margin: 0px;
	grid-template-columns: repeat(12,	7vw);
	grid-template-rows: repeat(12, 3em);
	grid-column-gap: 8px;
	grid-row-gap: 8px;
	text-align: left;
	font-family: suisseFont;
	font-size: 14px;
	line-height: 15pt;
}

.div1 {	grid-area: 1 / 1 / 3 / 3; mix-blend-mode: difference;	}
.div2 {	grid-area: 1 / 3 / 2 / 9; mix-blend-mode: difference;	}
.div3 {	grid-area: 1 / 10 / 2 / 12;	mix-blend-mode: difference;	}
.div4 {	grid-area: 2 / 1 / 3 / 3; mix-blend-mode: difference;	}
.div5 {	grid-area: 2 / 3 / 5 / 9; }
.div6 {	grid-area: 2 / 10	/	3	/	12;	mix-blend-mode: difference;	}

.content {
	margin-top: 50px;
	mix-blend-mode: normal;
}

/* slideshow */

/* Slideshow container */
.slideshow-container {
	position: fixed;
	display: flex;
	margin: 0	auto;
	z-index: -1;
	height: 100%;
	width: 100%;
	align-items: center;
}

/* Hide the images by default */
.mySlides {
	display: block;
	margin: 0	auto;
	align-items: center;
}

/* Next	&	previous buttons */
.prev,
.next {
	cursor: pointer;
	position: fixed;
	top: 49%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 32px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	mix-blend-mode: difference;
}

/* Position	the	"next	button"	to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}


/* Number	text (1/3	etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0	2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s	ease;
}

.active, .dot:hover {
	background-color: #717171;
}

/* Fading	animation	*/
/*
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}
*/

#realcontent {
	position: fixed;
	top: 200px;
	left: 0;
	width: 5500px;
	color: #fff;
	height: 100px;
	z-index: -2;
}

	#fakecontent {
		height: 5500px;
	}

.rotate {
	-webkit-text-stroke: 0.5px white;
	-webkit-text-fill-color: black;
	font-family: subFont;
	font-size: 200px;
	line-height: 90px;
}