@import url("https://fonts.googleapis.com/css2?family=Jacquard+12+Charted&family=Pixelify+Sans:wght@500&family=VT323&display=swap");

:root {
	--window-background-color: whitesmoke;
	--window-border-color: rgb(0, 64, 255);
	--window-box-shadow-color: rgb(0, 28, 68);
	--cyber-green: rgb(30, 247, 30);
	--actual-darkgrey: rgb(37, 37, 37);
	--crt-highlight-background: rgba(10, 205, 10, 0.90);
	/* --crt-highlight-background: rgb(0, 224, 224); */
	--crt-button-color: rgb(0, 54, 0);
}

html, body {
	margin: 0;
	min-height: 100vh;
	height: 100vh;
}

* {
	margin: 0;
	padding: 0;
}

html {
	cursor: url("../assets/raccoon-cursor.png"), auto;

	font-family: "Pixelify Sans", "Consolas";

	image-rendering: pixelated;
	scrollbar-width: thin;
	scrollbar-color: var(--actual-darkgrey) var(--cyber-green);
}

body {
	/* display: flex; */
	/* background-color: #202020; */
	/* background-color: black; */
	background: url("../assets/space2.gif");
}

button, a {
	cursor: url("../assets/raccoon-cursor-pointer.png"), auto;
}

a {
	text-decoration: none;
	color: inherit;
}

.crt-border-button-container {
	display: flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	bottom: 0;
	left: 26px;
	background: transparent;
	max-height: 26px;
}

.box {
	width: 10px;
	height: 10px;
	/* background-color: red; */
	background-color: #5b421c;
}

#fullscreen-button-box {
	background-color: #5b421c;
}

.crt-border-button {
	padding-left: 5px;
	padding-right: 5px;
	margin-right: 10px;
	/* display:inline-block; */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;

	font-family: "Pixelify Sans", "Consolas";
	font-weight: bold;

	color: black;
	background: #eed8b6;
	border-color: #5b421c;
	border-style: solid;
	border-width: 0px 3px 3px 0px;

	box-sizing: border-box;
}

.crt-border-button:active {
	border-width: 0px 3px 0px 0px;
	border-color: transparent;
}

#exit-game {
    background: transparent;
    border: none !important;
    font-size:0;

	position: absolute;
	right: 0;
	bottom: 0;
	width: 66px;
	height: 26px;

	cursor: url("../assets/raccoon-cursor-pointer.png"), auto;
}

#back-button {
	color: var(--cyber-green);
	position: absolute;
	top: 2vh;
	left: 2vw;
	font-size: 2em;
}

#description-div {
	/* background-color: maroon; */
	min-height: 100%;
	margin: 4vh 1vw;

	font-size: 1.5em;

	display: flex;
	align-items: center;
	justify-content: center;
}

#description-div::after {
	content: "";
	background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
	background-size: 100% 2px, 3px 100%;

	width: 100%;
	height: 100%;

	position: fixed;
	top: 0;
	left: 0;
	/* z-index: -1; */
	pointer-events: none;
}

#game-description-container {
	width: 50%;
	padding: 1em;
	background: rgba(0, 0, 0, 0.8);
	/* background-color: red; */
}

#game-visuals-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1em;
	/* background-color: blue; */
	background: rgba(0, 0, 0, 0.8);
	padding: 1em;
	width: 50%;
}

#game-ss-container {
	display: flex;
	align-items: center;
	justify-content: center;
	/* flex-direction: column; */
	gap: 1em;
}

#game-trailer-container {
	/* width: 75%; */
	/* height: 200%; */
	max-width: 560px;
	max-height: 315px;
}

#game-div {
	width: 100%;
	height: 100%;
	position: relative;
}

h1 {
	color: var(--cyber-green);
	margin-bottom: 0.5em;
}

p {
	color: white;
}

h1, p {
	text-align: center;
}

img {
	width: 40%;
	/* height: 40%; */
}

iframe {
	width: 100%;
	height: 100%;
	/* min-height: 100%; */
	/* background-color: red; */

	cursor: url("../assets/raccoon-cursor.png"), auto;

	/* background-color: var(--cyber-green); */
	background-color: green;

	/* padding: 8px; */
	/* padding: 0.6vw; */


	border-style: solid;
	border-width: 26px;
	border-image: url("../assets/crt-border-image.png") 12;
	box-sizing: border-box;

	/* box-shadow: 4px 4px var(--actual-darkgrey); */
}

@media screen and (max-width: 600px) {
	#description-div {
		min-height: auto;
		flex-direction: column;
		font-size: 1em;
		margin: 4vh 0.5vw;
	}

	#game-description-container {
		width: 90%;
	}

	#game-visuals-container {
		width: 90%;
	}

	#game-ss-container {
		flex-direction: column;
	}

	#game-trailer-container {
		width: 100%;
		height: 100%;
	}

	img {
		width: 90%;
		height: 90%;
	}

	#back-button {
		top: 10px;
		left: 10px;
	}
}
