@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

/* Root */
:root {
	--light: #ffffff;
	--dark: #000000;
	--primary: #cccccc;
	--secondary: rgb(196, 255, 231);
}

body {
	font-family: 'Courier Prime', monospace;
	padding: 0;
	margin: 0;
	background-color: #000000;
	color: var(--light);
	text-shadow: none;
}

header {
	width: 100vw;
}

a {
	color: var(--light);
}

img {
	image-rendering: -webkit-optimize-contrast;
	image-rendering: -moz-crisp-edges
}

*>* {
	box-sizing: border-box;
}

/* Global */

.container {
	max-width: 1200px;
	padding: 0 15px;
	margin: auto;
}

.italic {
	font-style: italic;
}

.bold {
	font-weight: bold;
}

.grid .grid-item,
.btn,
.navbar,
.text-body,
#footer {
	border-radius: 0;
	border: 2px solid var(--light);
	box-shadow: none;
	background: #000000;
}

.main-title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(180px);
	z-index: 1;
	max-height: 20px;
	line-height: 80px;
}

.text-title {
	font-family: 'Courier Prime', monospace;
	letter-spacing: 2px;
	color: var(--light);
}

.secondary-title {
	font-family: 'Courier Prime', monospace;
	color: var(--light);
}

.page-title {
	font-family: 'Courier Prime', monospace;
	font-weight: 700;
	font-size: 48px;
}

.text-body {
	padding: 12px 16px;
	margin: 12px 0;
	font-size: 24px;
	border: 2px solid var(--light);
}

.text-secondary {
	color: var(--secondary);
}

.display-1 {
	font-size: 32px;
}

.display-2 {
	font-size: 24px;
}

.display-3 {
	font-size: 16px;
}

.display-4 {
	font-size: 20px;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.img-fluid {
	max-width: 100%;
	min-width: 100%;
}

.img-clean {
	max-width: 100%;
	max-height: 540px;
}

.img-clickable {
	cursor: pointer;
}

#vid-fullscreen,
#img-fullscreen {
	width: 80%;
	height: 80%;
	object-fit: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
}

#loading-screen,
#img-fullview {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	text-align: center;
	z-index: 10;
}

#img-fullview {
	display: none;
}

#loading-screen {
	display: none;
	justify-content: center;
	align-items: center;
}

#fullview-close {
	position: fixed;
	top: 20px;
	right: 20px;
	font-size: 2rem;
	color: var(--light);
	cursor: pointer;
}

.section-subtitle {
	font-family: 'Courier Prime', monospace;
	color: var(--light);
}

.door {
	position: absolute;
	top: 1000vh;
	left: calc(47.5vw);
	z-index: -1;
	opacity: 0;
	cursor: none;
	transition: opacity ease-out 0.5s;
}

.door:hover {
	opacity: 0.8;
	transition: opacity ease-in-out 10s;
}

/* Buttons */
.btn {
	width: 100%;
	padding: 15px 20px;
	border-radius: 0;
	border: 2px solid var(--light);
	background: #000000;
	color: var(--light);
	font-family: 'Courier Prime', monospace;
	font-size: 32px;
	box-shadow: none;
	transition: none;
	cursor: pointer;
	margin-bottom: 20px;
}

.btn:hover {
	background: var(--light);
	color: #000000;
	transform: none;
}

/* Main Content */
#site-main {
	margin-top: 2em;
}

.posts {
	margin-bottom: 1em;
	margin-top: 1em;
}

.grid {
	margin: 0 auto;
}

.grid .grid-item {
	width: calc(33.33% - 20px);
	margin-bottom: 2em;
	border-radius: 0;
	border: 2px solid var(--primary);
	transition: none;
	padding: 8px;
}

.grid .grid-item:hover {
	transform: none;
	z-index: 2;
	box-shadow: none;
	border-color: var(--light);
	border-width: 6px;
	color: #000000;
	padding: 4px;
}

@media (max-width: 768px) {
	.grid .grid-item {
		width: calc(50% - 20px);
	}
}

@media (max-width: 574px) {
	.grid .grid-item {
		width: calc(100% - 20px);
	}
}