html{
	height: auto;
}
body{
	background:black;
	color:#0000FF;
	transition: 1s opacity;
	height:100vh;
}

body {
  overflow-x: hidden;
  font-family: 'Exo 2', sans-serif;
	background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;

}

.container-fluid{
	background:none;
}

#fadeoutbackground{
	height:100%;
	margin:0;
	background-color:black;
	background-size: cover;
  	background-repeat: no-repeat;
  	background-attachment:fixed;
}


div .container-fluid #main-content{
	color: rgba(0,0,10,.9);
	margin:auto;
	margin-top: 9%;
}

.spacer{
	display:inline-block;
	width:20px;
}
#main-content h1{
	color: rgba(250,250,250,.9);
	text-shadow: 1px 1px 5px rgba(10,10,20,0.8),
			3px 3px 10px rgba(10,10,20,0.5),
			5px 5px 20px rgba(10,10,20,0.2)	;
	font-size:4rem;
	text-align: center;
	font-weight:300;
	letter-spacing:5px;
}

#main-content p{
	color: rgba(250,250,250,.9);
	text-shadow: 1px 1px 4px rgba(10,10,20,0.8),
			3px 3px 15px rgba(10,10,20,0.7),
			5px 5px 30px rgba(10,10,20,0.3);
	max-width: 500px;
	text-align:center;
	margin:auto;
	margin-top:20px;
	font-weight:400;
	letter-spacing:1px;
}

#menu-toggle{
	transition: all 0.2s;
	outline:none;
}
#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background:none;
  height:100%;
}

#wrapper.toggled {
  padding-left: 250px;
}

#sidebar-wrapper {
  z-index: 1000;
  overflow:hidden;
  filter: none;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  background: rgba(10,10,20,0.8);
  border-right: 1px solid rgba(0,0,10,0.5);
  box-shadow: 1px 1px 3px rgba(0,0,10,0.2);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}

#page-content-wrapper {
  width: 100%;
  position: absolute;
  padding: 15px;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -250px;
}


/* Sidebar Styles */

.sidebar-nav {
	font-family: 'Exo 2', sans-serif;
	font-size: 1.2rem;
	letter-spacing:2px;
  position: absolute;
  top: 0;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
  height:100%;
}

.sidebar-nav li {
  text-indent: 20px;
  line-height: 40px;
  min-width: 150px;
}

.sidebar-nav li a {
  display: block;
  text-decoration: none;
  position: relative;
  color: #999999;
  width:0px;
  border-bottom: 2px solid transparent;
  transition: 0.5s ease;
}

.sidebar-nav li a:hover{
	border-bottom: 2px solid white;
	width: 130px;
	color:white;

}

#sidebar-wrapper .sidebar-nav #navbrand #brand{
	color: rgb(230,230,230);		
	width: 130px;
	border:none;
	font-size: 1.3rem;
	height:100%;
}

#sidebar-wrapper .sidebar-nav #navbrand #brand:hover{
	color:rgb(230,0,0);
}

a#menu-toggle.mr-5{
	color: rgb(230,230,230);
	transition: color 0.3s;
  font-size:3rem;
}

a#menu-toggle.mr-5:hover{
	color: rgb(200,0,0);
}

.sidebar-nav #bottomiconlinks{
	position:absolute;
	bottom:30px;
	width:100%;
	height:30px;
	text-align:center;
}
.sidebar-nav #bottomiconlinks a{
	color:#999999;
	font-size:2rem;
	transition: all 0.3s;
}

.sidebar-nav #bottomiconlinks a:hover{
	color:rgb(250,250,250);
} 

@media(min-width:768px) {

  #wrapper {
    padding-left: 0;
  }
  #wrapper.toggled {
    padding-left: 250px;
  }
  #sidebar-wrapper {
    width: 0;
  }
  #wrapper.toggled #sidebar-wrapper {
    width: 250px;
  }
  #page-content-wrapper {
    padding: 20px;
    position: relative;
  }
  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}
