body, html {
    height: 100%;
}

body{
	font-family: sans-serif;
	background: rgb(223, 217, 171);
	marging: 0;
	pading: 0;
	height: 100%; 
	
}
#nav{
	position: relative;
	width: 100%;
	height:auto;
}
.container{
  width:100%;
  margin:auto;
  overflow:hidden;
}

.bg { 
    /* The image used */
    background-image: url(../images/JavaMenu.jpg);

    /* Full height */
    
height:inherit;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
	 background-size: contain;
}

header{
	padding: 0 100px;
	width: 100%;
	height: 80px;
	box-sizing: border-box;
	background: rgb(73, 16, 0);
	box-shadow: 0 5px 15px rgba(0,0,0 .2);
	transition: 5s;
}
 ul{
	position: relative;
	margin: 0;
	padding: 0;
	display: flex;
	float: right;
	transition: .5s;
}
 ul li {
	list-style: none
}
 ul li a{
	position: relative;
	display: block;
	padding: 10px 20px;
	margin: 20px 0;
	text-transform: uppercase;
	text-decoration: none;
	color:bisque;
	font-weight: bold;
	transition: .5s;
}
 ul li a:hover{
	background:#000;
	color: #fff;
}
li a:hover:not(.active) {
    background-color:#000;
}

.active {
    background-color: #7E0000;
}

.toggle{
	position: absolute;
	right: 25px;
	top: 26px;
	background: #191312;
	color: #fff;
	padding: 5px;
	cursor: pointer;
	font-weight: bold;
	display: none;
	
}

/* Media Queries Desktops and laptops ----------- */
@media (max-width: 960px){
	.toggle{
		display: block;
	}
header{
	padding: 0 0;
	background: rgb(73, 16, 0);
	}
	header ul{
		width: 100%;
		top: 0;
		display: none;
	}
	header ul.active{
		display: block;
	}
	header ul li a{
		margin: 0;
		display: block;
		text-align: center;
		color: #fff;
		background: rgba(0,0,0,.5)
	}
}

#highlight{
  margin-top:20px;
	background-color:black;
	color: white;
}

#highlight .box{
  float:left;
  text-align: center;
  width:30%;
  padding:10px;
}

#highlight .box img{
  width:150px;
}
.dark{
  padding:15px;
  background:#35424a;
  color:#ffffff;
  margin-top:auto;
  margin-bottom:auto;
}

.footer{
	background-color: #491000;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: normal 16px sans-serif;
	  padding:20px;
  margin-top:0px;
}

.footer .footer-left p{
	color:  #8f9296;
	font-size: 14px;
	margin: 0;
}


.footer p.footer-links{
	font-size:18px;
	font-weight: bold;
	color:  #ffffff;
	margin: 0 0 10px;
	padding: 0;
}

.footer p.footer-links a{
	display:inline-block;
	line-height: 1.8;
	text-decoration: none;
	color:  inherit;
}

.footer .footer-right{
	float: right;
	margin-top: 6px;
	max-width: 180px;
}

.footer .footer-right a{
	display: inline-block;
	width: 35px;
	height: 35px;
	background-color:  #33383b;
	border-radius: 2px;
	font-size: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 35px;

	margin-left: 3px;
}
/* Media Queries Mobile ----------- */
 @media (max-width:600px){ 

	.footer .footer-left,
	.footer .footer-right{
	 text-align: center;
	}

	.footer .footer-right{
		float: none;
		margin: 0 auto 20px;
	}

	.footer .footer-left p.footer-links{
		line-height: 1.8;
	}
}

/* Media Queries Tablets */
@media(max-width: 768px){
  #highlight .box,
  article#main-col,
  aside#sidebar{
    float:none;
    text-align:center;
    width:100%;
	}
}