body {
	background-color: lightblue;
	background-image: url('background.jpg');
	background-repeat: no-repeat;
	background-size:cover;
	background-attachment: fixed;
	font-size: 18px;
	font-family: Arial;
}

footer {
	position: fixed;
	height: 5%;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.80);
	color: white;
	text-align: center;
	font-size: 180%;
	overflow: none;
	padding-top: 0.5%;
}

/* Gallary */

/* The grid: Four equal columns that floats next to each other */
.column {
  float: left;
  width: 30%;
  padding: 10px;
}

/* Style the images inside the grid */
.column img {
  opacity: 0.8; 
  cursor: pointer; 
}

.column img:hover {
  opacity: 1;
}

.row {
	position: relative;
	width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
.container {
  position: relative;
  display: none;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  top: 45px;
  color: white;
  font-size: 20px;
  background-color: rgba(50,50,50,0.7);
  left: 10px;
  right: 10px;
  padding: 5px;
}

/* Closable button inside the expanded image */
.closebtn {
  position: absolute;
  top: 5px;
  right: 15px;
  color: red;
  font-size: 42px;
  padding-left: 5px;
  padding-right: 5px;
  cursor: pointer;
}

/* Dropdown Button */
.dropbtn {
	position: relative;
	background-color: rgba(200,200,250,0.75);
	margin-top: 6px;
	margin-left: 2px;
	width: auto;
	padding: 8px;
	text-align: center;
	font-size: 20px;
	text-decoration: none;
	border-radius: 10px;
	color: rgb(60,60,200);
	font-weight: bold;
	border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
	background-color: rgba(220,220,250,0.85);
	width: auto;
	text-align: center;
	font-size: 20px;
	border-radius: 5px;
	color: rgb(30,30,190);
	font-weight: bold;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	margin-top: 2px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: grey;}

#topBlank {
	position: relative;
	height: 10px;
	left:0;
	right:0;
}

.section {
	position: relative;
	float: left;
	background-color: rgba(150,150,200,0.70);
	left: 1%;
	width: 94%;
	height: auto;
	margin-top: 15px;
	margin-bottom: 5px;
	border-radius: 10px;
	padding: 2%;
	color: rgb(0,0,100);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: insert 0 0 15px rgba(135,135,135,0.1), 0 0 18px 3px rgba(0, 0, 0, 0.3);
}

.sectionText {
	background-color: rgba(255,255,255,0.15);
	border-radius: 5px;
	padding: 10px;
}

#menu {
	position: relative;
	left: 1%;
	top: 5px;
	width: 98%;
	height: 50px;
	background-color: rgba(0,0,150,0.7);
	background-image: linear-gradient(to bottom left, rgb(0,0,150), rgb(100,100,50));
	border-radius: 5px;
}

#logo {
	position: relative;
	float: left;
	width: 140px;
	margin-left: 2px;
	margin-right: 2px;
	border-radius: 10px;
}

.item {
	position: relative;
	float: left;
	background-color: rgba(200,200,250,0.75);
	width: auto;
	padding-left: 8px;
	padding-right: 8px;
	margin-top: 6px;
	margin-left: 2px;
	height: 30px;
	padding-top: 8px;
	text-align: center;
	font-size: 20px;
	text-decoration: none;
	border-radius: 10px;
	color: rgb(60,60,220);
	font-weight: bold;
}

#bottomBlank {	
	position: relative;
	float:left;
	height: 100px;
	left:0;
	right:0;
	width: 100%;
}

.alert {
	position: relative;
	width: 100%;
	height: 90%;
	bottom: 5%;
	background-color: yellow;
	color: red;
	font-size: 120%;
}

h1 {
	color: blue;
}

h2 {
	color: rgb(0,0,200);
}

h3 {
	color: rgb(0,0,150);
}

/*NEWS*/

.pfp {
	display: inline;
	height:35px;
	width:35px;
	border-radius:50%;
	margin-right:15px;
	margin-bottom:-15px;
	transform:translateY(-5px);
}

.news {
	display: relative;
	padding-top: 5px;
}

.name {
	display: inline;
	height:40px;
	font-size: 25px;
}

.newsArea {
	padding: 5px;
	background-color: rgba(255,255,255,0.15);
	border-radius: 5px;
}

.newsImage {
	max-width: 80%;
	max-height: 200px;
}

a {
	text-decoration: none;
	color: rgb(0,0,100);
	font-weight: bold;
}

/*LEGACY*/

.offline {
	width: 25%;
	background-color: rgba(255,0,0,0.10);
	color: red;
}

.warn {
	width: 25%;
	background-color: rgba(255,100,0,0.30);
	color: orange;
	}

.online {
	width: 25%;
	background-color: rgba(0,255,0,0.10);
	color: green;
}