body {
	background-image: url("../img/wallpaper_rare_v.png");
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #eee;
	position: relative;
	margin: 0;
}

.page {
	background: rgba(30, 39, 46, 0.75);
	min-height: 100vh;
	margin: auto;
}

.pageheader {
	border-top: 2px solid #ce3333;
	border-bottom: 1px solid #ffffff;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 300;
	background-color: #1e272e;
}

.pagelogo {
	height: 250px;
	width: 95%;
	margin: auto;
	margin-top: 29px;
	text-align: center;
}


.pagelogologin {
	height: 250px;
	width: 95%;
	margin: auto;
	text-align: center;
}


.content {
	background-color: #263038;
	width: 95%;
	margin: auto;
	margin-bottom: 10px;
	
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 10px;
}

.footer {
	width: 95%;
	margin: auto;
	margin-bottom: 20px;
}


.textcenter {
	text-align: center;
}

a:link, a:visited
{
color: #FFF;
}


a:active, a:hover
{
color: #FFF;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #1e272e;
}

li {
    float: left;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e272e;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: gray}

.dropdown:hover .dropdown-content {
    display: block;
}