html {

	background-image: url('../img/backgroundmain.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

}


body {
	font-family: 'Modern', Fallback, sans-serif;

}

@font-face {
	font-family: 'Modern';
	src: url('woff.otf');
	/* IE9 Compat Modes */

}


.nav-bar {
	text-transform: uppercase;
	border-style: solid;
	border-width: thin;
	background-image: url('../img/background.png');
	background-size: 100% 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	height: 75px;
	-ms-transform: translateY(0%);
	transform: translateY(0%);


}


.nav-item-ul {
	float: right;
	display: flex;
	padding-right: 10px;
	padding-top: 16px;

}


.nav-item-one {
	border-style: solid;
	border-width: thin;
	padding: 10px;
	border-color: black;
	
}

.nav-item-two {
	border-style: solid;
	border-width: thin;
	padding: 10px;
	border-color: black;
}

/* ---- Addition below: not in the original file ---- */
/* A third bordered nav-item, needed once the nav grew to 3 links (Home/
   Register/Account) - identical styling to nav-item-one/two, just a new
   name since nav-item-three was already the brand/logo wrapper's class. */
.nav-item-four {
	border-style: solid;
	border-width: thin;
	padding: 10px;
	border-color: black;
}

.nav-item-three {
	padding-left: 20px;
	float: left;
	
}

.nav-item {
	font-size: 20px;
	text-decoration: none;
	color: #FFFFFF;
	border: none;
}


.container {
	margin-top: 100px;
	padding-bottom: 15px;
	width: 100%;
	text-transform: uppercase;
}

.header-border {
	background-image: url('../img/button.png');
	background-size: 100% 100%;
	border-style: solid;
	border-width: thin;
	border-color: black;
	color: white;
	width: 390px;
	margin: 0 auto;
	text-align: center;
	padding: 15px 0;
}

.message {
	color: red;
	font-size: 12px;
	padding-bottom: 2px;
}

.message-success{
	color: green;
	font-size: 12px;
	padding-bottom: 2px;
}


.h3 .header-text {
	color: white;
}

.alert-danger {
	height: 2px;
	color: red;
	font-size: 12px;
}



.form-control {
	display: block;
	margin: auto;
	margin-bottom: 15px;
	padding-top: 10px;
	padding-bottom: 6px;
	border-style: solid;

}

.form-group {
	padding: 20px;
	
	width: 350px;
	text-decoration: none;
	margin: auto;
	text-align: center;
	background-image: url('../img/containerbackground.png');
	background-size: 100% 100%;
	word-wrap: break-word;
	color: white;


}


.btn {
	background-image: url('../img/button.png') no-repeat top left;
	background-size: cover;
	padding: 12px 28px;
	font-size: 16px;
	margin-top: 10px;
	display: inline-block;

}

/* ---- Addition below: not in the original file ---- */
/* Sizes the fred.png mascot icon in the nav brand area - without this it
   renders at native pixel size, which looked wrong next to the "Darkhall"
   text. Only new rule added; everything above is unchanged. */
.mascot {
	height: 60px;
	width: auto;
	vertical-align: middle;
	margin-right: 6px;
	image-rendering: pixelated;
}