* { margin: 0px; padding: 0px; }
html { height: 100%; box-sizing: border-box; }
body {
  position: relative;
  margin: 0;
  background-color: #274380;
  min-height: calc(100% - 140px);

}
@font-face {
  font-family: 'Novecento';
  src: url('novecento.otf');
}
h1, h2, h3, h4, h5, h6 { color: #444; font-family: 'Novecento', cursive; }
a { text-decoration: none;word-break: break-word;}
ul, ol { margin-left: 40px; }
hr { margin: 10px 0px; opacity: .65; }
p {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  font-family: 'Lato';
}
form h2 {
	margin: 25px auto;
	text-align: center;
	font-family: 'Noto Serif', cursive;
}
form input {
	width: 100%;
	display: block;
	padding: 13px 13px;
	font-size: 1em;
	margin: 5px auto 10px;
	border-radius: 3px;
	-webkit-box-sizing : border-box;
	        box-sizing : border-box;
	background: transparent;
	border: 1px solid #3E606F;
}
form input:focus {
	outline: none;
}

.btn {
	color: white;
	background: #4E6166;
	text-align: center;
	border: none;
	border-radius: 5px;
	display: block;
	letter-spacing: .1em;
	margin: 10px 0px;
	padding: 13px 20px;
	text-decoration: none;
}
.container {
	width: 100%;
	min-height: calc(100vh - 140px);
	margin: 0px auto;
	margin-top: 140px;
}

/* NAVBAR */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	min-height: 70px;
	margin: 0 auto;
	background-attachment: fixed;
    background-color: transparent;
	z-index: 100;
    opacity: 0;
    animation: intro 400ms linear forwards;
}

@keyframes intro {
	from {opacity: 0}
	to {opacity: 1}
}

.navbar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	min-height: 70px;
	background-color: transparent;
	margin-left: 240px;
}

.navbar ul li {float: left;}

.navbar ul li a {
	display: block;
	color: white;
	text-align: center;
	padding: 26px 16px;
	text-decoration: none;
	font-family: 'Raleway';
    min-width: 35px;
    transition: 300ms all;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.navbar ul li a:hover {background-color: #2DCCFB;}

.navbar ul li a.active {font-weight: bold;}

.navbar ul li.right {float: right;}

.navbar ul li.right a {margin-right: 0px;margin-left: 5px;}

/* LOGO */
.navbar .logo_div {
	float: left;
}
.navbar .logo_div h1 {
	color: #B9E6F2;
	font-size: 2.5em;
	letter-spacing: 5px;
	font-weight: 100;
	font-family: 'Noto Serif', cursive;
}

.image_logo {
  background: url('rightstick_logo.png') no-repeat 0 0 scroll;
  background-size: contain;
  position: absolute;
  z-index: 1000;
  height: 206px;
  width: 206px;
  margin-left: 8px;
  margin-top: 16px;
  pointer-events: none;
}

.imageb_logo {
  background: url('rightstick_tekst.png') no-repeat 0 0 scroll;
  background-size: contain;
  position: absolute;
  z-index: 1000;
  height: 206px;
  width: 206px;
  margin-left: 8px;
  margin-top: 16px;
  pointer-events: none;
}

.anim_logo {
	margin-left: -70px;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(11deg) scaleX(2) scaleY(4) skewX(-16deg);
      -ms-transform: rotate(11deg) scaleX(2) scaleY(4) skewX(-16deg);
          transform: rotate(11deg) scaleX(2) scaleY(4) skewX(-16deg);
  -webkit-box-shadow: 3px 1.3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1.3px rgba(0, 0, 0, 0.3);
}

/* BANNER: Welcome message; */
.banner {
	margin: 5px auto;
	min-height: 400px;
	color: white;
	border-radius: 5px;
	background-image: url('banner.html');
	background-size: 100% 100%;
}
.banner .welcome_msg {
	width: 45%;
	float: left;
	padding: 20px;
}
.banner .welcome_msg h1 {
	color: #B9E6F2;
	margin: 25px 0px;
	font-size: 2.4em;
	font-family: 'Noto Serif', cursive;
}
.banner .welcome_msg p {
	color: white;
	font-size: 1.5em;
	line-height: 1.8em;
    font-family: 'Noto Serif', serif;
}
.banner .welcome_msg p span {
	font-size: .81em; 
	color: #3E606F;
}
.banner .welcome_msg a {
	width: 30%;
	margin: 20px 0px;
	padding: 12px 15px;
	font-size: 1.2em;
	text-decoration: none;
}
.banner .welcome_msg a:hover {
	background: #374447;
}

/* BANNER: Login Form; */
.banner .login_div {
	width: 50%;
	float: left;
}
.banner .login_div form {
	margin-top: 40px;
}
.banner .login_div form h2 {
	color: white;
	margin-bottom: 20px;
    font-family: 'Noto Serif', serif;
}
.banner .login_div form input {
	width: 60%;
	color: white;
	border: 1px solid white;
	margin: 10px auto;
	letter-spacing: 1.3px;
    font-family: 'Noto Serif', serif;
}
.banner .login_div form button {
	display: block;
	background: #006384;
	margin-left: 20%;
}

/* CONTENT */
.content {
	margin: 5px auto;
	border-radius: 5px;
	min-height: 400px;
	width: 70%;
}
.content:after {
	content: "";
	display: block;
	clear: both;
}
.content .content-title {
	margin: 10px 0px;
	color: white;
	font-family: 'Novecento';
}
.about_content {
	width: 50% !important;
	max-width: 800px !important;
}
.content .post {
	min-height: 250px;
	width: 100%;
	margin: 9px;
	float: left;
	background-color: white;
	position: relative;
}
.about_post {
	min-height: 150px !important;
}
.content .post a h4{
	font-family: 'Raleway';
}
.content .post a h5{
	font-family: 'Raleway';
}
.hovermouse:hover {
	background-color: #ddd;
}
.nohover:hover {
	
}
.content .post .category {
	margin-top: 0px;
	padding: 3px 8px;
	color: #374447;
	background: white;
	display: inline-block;
	border-radius: 2px;
	border: 1px solid #374447;
	-webkit-box-shadow: 3px 2px 2px;
	        box-shadow: 3px 2px 2px;
	position: absolute;
	left: 5px; top: 5px;
	z-index: 3;
}
.content .post .category:hover {
	-webkit-box-shadow: 3px 2px 2px;
	        box-shadow: 3px 2px 2px;
	color: white;
	background: #374447;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	opacity: 1;
}
.content .post .post_image {
	height: 230px;
	width: 230px;
	-o-object-fit: contain;
	   object-fit: contain;
	background-size: 100%;
	margin-top: 10px; 
	margin-left: 10px;
	overflow: hidden;
}
.content .post .post_image_img {
	position: absolute; 
	top: 10px; 
	left: 10px;
	margin-top: 0px; 
	margin-left: 0px;
}
.content .post .post_image_blur {
	height: 230px;
	width: 230px;
	-o-object-fit: cover;
	   object-fit: cover;
	filter: blur(8px);
	-webkit-filter: blur(15px);
	background-size: 100%;
}
.about_image {
	height: 130px !important;
	width: 130px !important;
}
.content .post .post_info {
	display: inline-block;
	position: absolute;
	height: 80%;
	top: 10%;
	left: 275px;
	width: calc(100% - 290px);
	padding: 0px 0px;
	font-weight: 200;
    font-family: 'Lato';
}
.about_info {
	left: 150px !important;
	width: calc(100% - 170px) !important;
}
.content .post .post_info {
	color: #222;
}
.content .post .post_info span {
	color: #A6A6A6;
}
.content .post .post_info span:hover {
	color: #666;
}
.content .post .post_info span a {
	color: #A6A6A6;
}
.content .post .post_info span a:hover {
	color: #666;
}
.content .post .post_info a {
	color: #A6A6A6;
}
.content .post .post_info a:hover {
	color: #666;
}
.content .post .post_info a {
	color: #A6A6A6;
}
.header-wrapper .menu-wrapper .info a {
	color: #A6A6A6;
}
.header-wrapper .menu-wrapper .info a:hover {
	color: #666;
}
.content .post .post_info span.read_more {
	position: absolute;
	right: 5px; bottom: 5px;
}
.about_links {
	position: absolute;
	right: 5px; bottom: 5px;
}

.pagination_button {
	color: white;
	padding: 10px 15px;
	border: 1px solid white;
	background: #2a4b6f;
}

.pagination_button:hover:not(.active) {background-color: #111;}

.pagination_button.active {background-color: #4CAF50;}

/* SINGLE-PAGE */
.header-wrapper {
  display: table;
  width: 100%;
  background: white;
}

.header-wrapper:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.logo {
  display: table-cell;
  vertical-align: middle;
  float: right;
  margin-top: 4.5%;
  margin-right: 5.5%;
}

.logo img {
  max-width: 100%;
  max-height: 603px;
}

.menu-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 45%;
  padding-bottom: 110px;
  padding-left: 4%;
  padding-right: 20px;
}

/* NOTIFICATION MESSAGES */
.message {
	width: 100%; 
	margin: 0px auto; 
	padding: 10px 0px; 
	color: #3c763d; 
	background: #dff0d8; 
	border: 1px solid #3c763d;
	border-radius: 5px; 
	text-align: center;
}
.error {
	color: #a94442; 
	background: #f2dede; 
	border: 1px solid #a94442; 
	margin-bottom: 20px;
}
.validation_errors p {
	text-align: left;
	margin-left: 10px;
}
.logged_in_info {
	text-align: right; 
	padding: 10px;
}

/* FOOTER */
.footer {
  right: 0;
  left: 0;
  color: white;
  background-color: #2a3140 !important;
  text-align: center;
  line-height: 26px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  position: absolute;
  font-family: 'Lato';
  bottom: -214px; 
}

.footer_text{
	margin: auto;
}

.footer_logo{
	height: 132px;
	width: 33.3%;
	left:0%;
}

.footer_left_links{
	height: 132px;
	top:0px;
	width: 33.3%;
	left:33.3%;
}

.footer_right_links{
	height: 132px;
	top:0px;
	width: 33.3%;
	left:66.7%;
}

.footer_list_style{
	list-style-type: none;
	margin: 0;
	margin-top: 7px;
	text-align: left;
}

.footer_link:hover {
	font-weight: 600;
}

.mobile_br{
	display: none;
	margin: 0;
}

#desktoppost {display: block;}
#mobilepost {display: none;}

.mobile_navbar{
	position: static;
	top: 0;
	width: 100%;
	min-height: 70px;
	margin: 0 auto;
	background-color: #2a3140;
	z-index: 100;
	display: none;
}

.mobile_footer_logo{
	height: 132px;
	width: 100%;
	left:0%;
	display: none;
}

.outer-container {
    width: 100%;
    height: calc( 100% - 4px );
    text-align: center;
	margin-top: -140px;
	display: block;
}
.outer-container2 {
    width: 100%;
    height: calc( 100% - 4px );
    text-align: center;
	margin-top: -70px;
	display: block;
}
.inner-container {
    display: block;
    position: relative;
}
.video-overlay {
    position: absolute;
	vertical-align: middle;
    left: 0px;
    top: 0px;
	width: 100%;
	height: calc( 100% - 4px );
    color: #FFF;
	background-image: url('pattern.png');
	background-repeat: repeat;
	background-attachment: scroll;
}
.text-overlay {
	position: absolute;
	left: 50%;
    top: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}
.font-overlay {
	font-family: 'Novecento';
	}
video {
    width: 100%;
    height: 100%;
}

.more_news_button{
	background: #2a4b6f;
	cursor: pointer;
}

.vidya:before{
  content: '';
  position: absolute;
  background-image: url('pattern.png');
  background-repeat: repeat;
  background-attachment: scroll;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.content .gamecontainer
{
	display: flex;
	justify-content: flex-start;
	overflow-y: hidden;
	overflow-x: scroll;
}

.content .gamecontainer::-webkit-scrollbar {
		width: 100%;
		height: 10px;
	}
.content .gamecontainer::-webkit-scrollbar-thumb {
		  background: #c0c0c0;
		  border: 0px solid #400040;
		  border-radius: 0px;
	}
.content .gamecontainer::-webkit-scrollbar-thumb:hover {
		  background: #808080;
	}
.content .gamecontainer::-webkit-scrollbar-thumb:active {
		  background: #5d5d5d;
	}
.content .gamecontainer::-webkit-scrollbar-track {
		  background: #ffffff;
		  border: 0px none #ffffff;
		  border-radius: 0px;
	}
.content .gamecontainer::-webkit-scrollbar-track:hover {
		  background: #ffffff;
	}
.content .gamecontainer::-webkit-scrollbar-track:active {
		  background: #ffffff;
	}
.content .gamecontainer::-webkit-scrollbar-corner {
		  background: transparent;
	}

.content .descriptioncontainer
{
	display: none;
	height: auto;
	padding: 10px 10px 22px 10px;
	background-color: white;
}

.content .game
{
	width: 225px;
	height: 300px;
	padding: 22px;
	position: relative;
}

.content .game .game_image {
	height: 300px;
	width: 225px;
	-o-object-fit: cover;
	   object-fit: cover;
	background-size: 100%;
	overflow: hidden;
}

.content .game .game_image_img {
}

.loginwindow {width: 40%;padding: 1px 20px 18px 20px}

.discord_bg {
	animation: bg_anim 65s linear infinite;
}

.piss {
	font-size: 30pt;
}

@keyframes bg_anim {
	from {background-position: 0 0}
	to {background-position: 3840px 2160px}
}

.about_description{
	width: 70%;
	background: white;
	color: black;
	margin: auto;
	box-sizing: border-box;
	padding: 20px 20px;
	text-align: center;
}

.whiteskew {
	display: block;
}

.double_link {
	width: 49%;
	display: inline-block;
}

.double_link2 {
	width: 50%;
	display: inline-block;
	text-align: right;
}

.big_word_colonel {
	word-break: keep-all;
	white-space: nowrap;
}

.very_important {
	background: none !important;
}

.very_important:hover:not(.active) {
	background-color: #2DCCFB !important;
}

.abracadabra {
	display: block !important;
}

@media screen and (min-width: 770px) {
  .footer .footer_text {max-width: 750px;display: flex;}
  .content {padding-bottom: 52px;}
}

@media screen and (min-width: 825px) {
  .footer .footer_text {max-width: 825px;display: flex;}
  .content {padding-bottom: 26px;}
}

@media screen and (min-width: 1000px) {
  .footer .footer_text {max-width: 1000px;display: flex;}
}

@media screen and (max-width: 1000px) {
  .about_content {width: 70% !important;}
}

@media screen and (max-width: 770px) {
  .navbar {position: static;}
  .footer .footer_text {max-width: 750px;display: flex;}
  .navbar .logo_div {
	display: none;
	}
}

@media screen and (max-width: 770px) {
  .navbar ul li.right, .navbar .logo_div,
  .navbar ul li {float: none;}
  .navbar ul {margin-left: 0;}
  .container {margin-top: 0;}
  .content {width: 90%;}
  .about_content {width: 90% !important;}
  .about_description {width: 90%;}
  .content .post .post_info {position: static;width: 100%;text-align: center;}
  .about_info {width: 100% !important;}
  .content .post .post_image {width: 100%;margin-top:1.2em;margin-bottom: 10px;margin-left:0;}
  .about_image {width: 100% !important;}
  .content .post .post_image .post_image_blur {display: none;}
  .content .post .post_image_img {left:0;top:0;}
  .mobile_br {display: block;}
  .read_more {display: none;}
  .about_links {position: relative;width: 100%;text-align: center;}
  .footer_left_links, .footer_right_links {left: 0px;width: 100%;}
  .footer_list_style {text-align: center;}
  .mobile_navbar {display: block;}
  .footer_logo {display: none;}
  .footer {bottom: -372px;}
  .mobile_footer_logo {display: block;}
  .navbar {display: none;}
  .loginwindow {width: 80%;padding: 1px 20px 326px 20px}
  .outer-container {display: none;}
  .outer-container2 {margin-top:0px;}
  .piss {font-size: 6vw;}
  .whiteskew {display: none;}
  .double_link {width: 100%;display: block;text-align: center;}
  .double_link2 {width: 100%;display: block;text-align: center;}
  .big_word_colonel {word-break: normal; white-space: normal;}
  .abracadabra {display: none !important;}
  #desktoppost {display: none;}
  #mobilepost {display: block;}
}

@media screen and (max-width: 770px) {
  .navbar ul li.right a, .navbar ul li a {margin-right: 0px; margin-left: 0px;}
  .navbar .logo_div {padding: 0px;}
}