/*
*{
	transition: color .25s;
	transition: background-color .25s;
	transition: background-image .25s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
*/
@font-face{
	font-family: Futura;
	src: url(fnt/futura_heavy_font-webfont.woff);
}

body{
	margin: 0 0;
	
	background-color: blue;
	background-image: url(img/banner.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	height: 100vh;
	
	line-height: 1.3;
	font-size: 18pt;
	
	font-family: /*Futura, Futura-Medium,*/Trebuchet MS,Arial,sans-serif;
	color: #111111;
	
	display: block;
	word-wrap: normal;
    white-space: normal;
}

/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  /*border-radius: 12px;*/
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(0,100,255);
  /*border-radius: 12px;*/
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(0,170,255);
}

.round-scrollbar ::-webkit-scrollbar-thumb {
	border-radius: 12px;
}
.round-scrollbar ::-webkit-scrollbar-track {
	border-radius: 12px;
}

header{
	background-color: rgba(0, 0, 255, 0.9);
	border-radius: 0;
	padding: 10px;
	color: white;
	font-family: Futura, Futura-Medium;
	width: calc(100% - 20px);
	
	position: sticky; top: 0;
	
	z-index: 1000;
}

header .logo{
	background-image: url(img/logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	
	display: block;
	height: 30px;
	width: 30px;
	
	margin: 0;
	position: absolute;
	top: 50%;
	left: 10px;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header-links{
	margin-left: 40px;
}

.page-link{
	margin: 10px;
	font-height: bold;
}

header .page-link{
	font-size: 24pt;
}
.page-link a{
	text-decoration: none;
}
header a{
	color: white;
	text-decoration: none;
	
	transition: color 0.2s ease-in-out;
}
header a:hover{
	color: aqua;
}
header .socials{
	float: right;
	margin: 0;
	position: absolute;
	top: 50%;
	right: 10px;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

img{
	max-width: 100%;
}
video{
	max-width: 100%;
}

.main-container{
	
}

h1{
	line-height: 30px;
	margin-left: 20px;
	margin-top: 20px;
	font-size: 24pt;
	font-weight: bold;
	color: white;
	text-shadow: -1px -1px 0 blue,
     0   -1px 0 blue,
     1px -1px 0 blue,
     1px  0   0 blue,
     1px  1px 0 blue,
     0    1px 0 blue,
    -1px  1px 0 blue,
    -1px  0   0 blue;
	
	font-family: Futura, Futura-Medium;
}

.content-container{
	max-width: 1200px;
	margin: auto;
}
.content{
	margin: 10px;
	padding: 10px;
	
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 13px;
}
/*
.content .content{
	max-width: 1200px;
	margin: auto;
}
*/

.game-widget{
	background-color: white;
	height: 300px;
	width: auto;
	margin-top: 10px;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	
	background-position: center center;
	background-size: cover;
}
.game-widget-logo-container{
	height: 100%;
	width: 60%;
	position: relative;
}
.game-widget-logo{
	width: 75%;
	height: 75%;
	transition: width .25s, height .25s;
	
	/*display: block;*/
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.game-widget-logo:hover {
	width: 85%;
	height: 85%;
}

.game-widget-info-container{
	width: 40%;
	height: 100%;
	
	background-color: rgba(0,0,255,0.3);
	color: white;
}
.info-left{
	border-top-right-radius: 24px;
	border-bottom-right-radius: 24px;
}
.info-right{
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}
.game-widget-info{
	width: 90%;
	text-align: center;
	font-size: 18pt;
	
	margin: 0;
	position: relative;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


.top-widget{
	margin-top: 0;
}
.bottom-widget{
	margin-bottom: 0;
}

.flat-top{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.flat-bottom{
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

iframe{
	border: none;
}

footer{
	background-color: rgba(0, 0, 255, 0.6);
	border-radius: 0;
	padding: 10px;
	color: white;
	font-size: 12pt;
	/*height: 90px;*/
	width: calc(100% - 20px);
	/*box-shadow: 0 calc(50vh + 10px) 0 50vh #800080E6;*/
}
footer .socials{
	margin-top: 10px;
}
.socials img{
	margin: 3px;
	height: 25px;
	width: auto;
}

.vertical-center{
	margin: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.news-articles-years{
	overflow: none;
	white-space: wrap;
	width: 100%;
	display: inline-grid;
	
	font-size: 20pt;
	margin: auto;
	margin-top: 10px;
	display: block;
	position: sticky;
	top: 70px;
}

.news-articles-years a{
	font-decoration: none;
	color: blue;
}

.news-articles-grid{
	display: grid;
	grid-template-columns: 90px auto;
	grid-template-rows: auto;
	min-height: 900px;
}

/*ARTICLE PREVIEWS*/
.article-widget{
	display: block;
	background-color: rgba(0,0,255,0.18);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	height: 220px;
	width: 100%;
	/*max-width: 590px;*/
	margin: 10px;
	margin-left: auto;
	margin-right: auto;
	
	transition: background-size 0.4s;
	pointer-events: none;
}

.article-widget:hover{
	background-size: calc(110%);
}

.article-widget a{
	color: inherit;
	text-decoration: none;
	
	margin: 10px auto 10px auto;
}

.article-widget-content{
	pointer-events: auto;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	margin: 10px auto 10px auto;
	text-decoration: none;
}

.article-widget-content .date{
	color: white;
	mix-blend-mode: difference;
}
.article-widget-content .title-container{
	height: calc(100%);
	
	position: relative;
	top: -30px;
	
}
.article-widget-content .title{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	
	color: blue;
	text-align: center;
	font-size: 36pt;
	
	text-decoration: none;
	font-family: Futura;
	color: white;
	
	text-shadow: -1px -1px 0 blue,
     0   -1px 0 blue,
     1px -1px 0 blue,
     1px  0   0 blue,
     1px  1px 0 blue,
     0    1px 0 blue,
    -1px  1px 0 blue,
    -1px  0   0 blue;
	/*mix-blend-mode: difference;*/
}

/* when mobile */
@media (max-width:1000px){
	footer{
		border-radius: 0px;
	}
	::-webkit-scrollbar-thumb {
	  border-radius: 0;
	}
	
	header .page-link{
		font-size: 12pt;
	}
	header .socials{
		display: none;
	}
	.game-widget-info{
		font-size: 12pt;
	}
	.news-articles-years{
		overflow: auto;
		white-space: nowrap;
		/*display: inline;*/
	}
	.news-articles-grid{
		/*grid-template-columns: 90px auto;*/
		grid-template-columns: auto;
		grid-template-rows: 50px auto;
	}
	
	.article-widget-content .title{
		font-size: 24pt;
	}
}