@font-face {
  font-family: "xanh";
  src: url("xanhmono-regular.ttf");
}

#title{
		font-family: "xanh";
    text-align: center;
    color: #FFF;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    text-shadow: 0 0 20px white;
    position:relative;
    margin-top:30px;
    margin-bottom:30px;
    font-size: 120px;
}

.header{
	width:100vw;
	height:50px;
	background: #222;
	text-align: center;
	position:fixed;
	z-index: 5;
}

.footer{
	font-family: "xanh";
	font-size: 30px;
}

.yellowtext {
	font-family: "xanh";
  font-size:30px;
  text-transform: uppercase;
  color: #FFFFFF;
	text-shadow: 0px 2px #000;
}

.yellowtext a{
  color: #FFFFFF;
	text-decoration:none;
	margin-left:2vw;
	margin-right:2vw;
	line-height:50px;
	transition: color .25s ease-in-out;
}

.yellowtext a:hover {
    color: #AAFFAA;
}

.half{
	width:50%;
	position:relative;
	vertical-align: top;
	display:inline-block;
	overflow-x:hidden;
	margin-bottom:70px;
}

.gameTitle{
	font-family: "xanh";
	margin: 10px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	font-size: 90px;
	text-align: center;
}

.gameDesc{
	font-family: "xanh";
	margin: 20%;
	margin-top: 10px;
	margin-bottom: 10px;
	display: block;
	font-size: 20px;
}

.gameDesc p{
	margin-top: 10px;
	margin-bottom: 30px;
}

.gameDesc h2{
	color: #CCC;
}

.gamescreenshot{
	margin: 20px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 80%;
}

#boxHolder{
  aspect-ratio: 32/9;
  margin-left: auto;
  margin-right: auto;
  max-height: 50vh;
  margin-bottom: 80px;
  position: relative;
}

.box {
    display: inline-block;
    width: 50%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.imagelayer {
    overflow: hidden;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: -webkit-filter .25s ease-in-out, transform .25s ease-in-out;
    position: absolute;
}
.box:hover .imagelayer {
    -webkit-filter: blur(10px) brightness(50%);
    transform: scale(1.1);
    z-index: -1;
}

.textlayer {
    overflow: visible;
    z-index: 0;
    opacity: 0;
    transition: opacity .25s ease-in-out;
    margin: auto;
	  position: absolute;
	  top: 50%;
	  width: 100%;
}

.text{
		font-family: "xanh";
    font-size: 10vmin;
    text-align: center;
    overflow: visible;
    white-space: nowrap;
    color: #fff;
    z-index: 1;
    bottom: 0.5em;
    position:relative;
}

.box:hover .textlayer {
    opacity: 100;
}

.footer{
	position: fixed;
	bottom: 0;
	margin: 10px;
}

.sociallink{
	border-radius: 15px;
	width: 50px;
	height: 50px;
	z-index: 5;
}

body{
	overflow-x: hidden;
	color: #AAA;
	margin: 0;
	background: no-repeat #000;
  background-attachment: fixed;
	background-position: right bottom;
	background-image: linear-gradient(#000, #000, black, black, black, black, #222);
	height: 100vh;
}

h2{
	margin-top: 20px;
	margin-bottom: 0px;
}

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #5533ff;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #5533ff;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 85, 51, 255;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #FFF;
  --bs-link-hover-color: #AAFFAA;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #565e64;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 111,82,255;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #5533ff;
  --bs-btn-disabled-border-color: #5533ff;
}

.comment-body{
	margin:20px;
}

@media only screen and (max-width: 500px){
	#boxHolder{
  	aspect-ratio: 16/9;
	}

	.box{
		width:100%;
	}

	#title{
		font-size: 50px;
    text-shadow: 0 0 10px white;
    margin-top:10px;
    margin-bottom:10px;
		text-align: center;
	}

	.yellowtext{
		font-size: 20px;
	}

	.half{
		display:block;
		width:100%;
	}
}