/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}

html {
	height: 100%;
	background-color: #be9627;
	background-image: url("/assets/bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	background-attachment: fixed;
}

body {
	color: #000;
	font-family: 'Trebuchet MS', Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 4vw;
	padding: 10px;
}

#container {
	width: 100%;
	margin: 0 auto;
}

#main-logo {
	width:50%;
	height:auto;
}

.blurredBG {
	background: #fff2;
	backdrop-filter:blur(7px) brightness(1.5) saturate(0.6);
	border-radius: 7px;
}

#header {
	width: 100%;
	height:max-content;
	color: #00579e;
	padding: 2vw 0;
}
#header img {
	width: 50%;
}
#header div {
	width: 45%;
	display: inline-block;
	top: 0.6em;
	position: absolute;
}

@keyframes blinker {
	50% {
	  opacity: 0;
	}
}
#alert {
	animation: blinker 1.5s linear infinite;
	width: 100%;
	text-align: center;
	color:#e31931;
	font-size:80%;
	font-weight: bold;
	-webkit-text-stroke-width: 0.5px;
	-webkit-text-stroke-color: white;
	margin: 20px 0;
}

.page {
	padding: 2vw;
	font-size: 70%;
	overflow: hidden;
	height: max-content;
	margin-bottom: 2vw;
	cursor: pointer;
	overflow: hidden;
	-webkit-transition: height 0.2s ease-in;
	-moz-transition: height 0.2s ease-in;
	-o-transition: height 0.2s ease-in;
	transition: height 0.2s ease-in;
}
.page .content {
	display: none;
}
.open .altHeader {
	display: none;
}
.open .content {
	display: block;
}

.content {
	margin-bottom: 2vw;
}
.content p {
	margin-block-start: 3vw;
}
.content a {
	display: unset;
	color: #00579e;
	cursor: pointer;
}
.altHeader {
	pointer-events: none;
}
.altHeader h2 {
	margin: 0.2em 0;
	font-weight: bold;
	color: #00579E;
}
.open {
	cursor: unset;
}


h2 {
	margin-top: 1vw;
	color: #E31931;
	font-weight: 300;
}

h3 {
	color: #7e6114;
	font-size: 70%;
	font-weight: 300;
	margin-bottom: 0;
}

td {
	padding: 0 1vw 2vw 0;
	vertical-align: top;
}
.tdFirst {
	text-align: right;
}

#elonyCard {
	float:right;
	display:block;
	margin:10px 0;
	border-radius: 6px;
}

#elonyCard img {
	width:25vw;
	max-width:320px;
	border-radius: 6px;
}

#copyright {
	color: white;
	display: block;
	margin-top: 5vw;
	float: left;
}

#lang-selector {
	display: block;
	margin-top: 3vw;
	float: right;
}
#lang-selector img {
	width: 10vw;
}

#open_preferences_center {
	margin-top: 2vw;
	clear: both;
	height: max-content;
	width: max-content;
	color: white;
	cursor: pointer;
}
#open_preferences_center img {
	width: 10vw;
	display: inline-block;
}
#open_preferences_center div {
	display: inline-block;
	position: relative;
	top: -3.5vw;
	left: 8px;
}

/* Maximalise the font and container size. */
@media (min-width: 1024px) {
	body {
		font-size: 41px;
	}
	#header {
		margin-top: 20px;
	}
	#container {
		width: 1024px;
	}
	.page {
		font-size: 65%;
	}
	#lang-selector {
		margin-top: 2.5vw;
	}
	.altHeader h2 {
		font-weight: 300;
	}
}
@media (max-width: 480px) {
	#alert {
		font-size: 120%;
	}
	.page {
		font-size: 110%;
	}
	h2 {
		font-weight: bold;
	}
}