	html {
		font-size: calc(15px + 0.390625vw);
	}
	body {
	  margin: 0;
	  height:100%;
	  font-family: Arial, Helvetica, sans-serif;
	}

	.navbar {
	  overflow: hidden;
	  background-color: #c69e22;
	  color:white;	  
	  position: fixed;
	  bottom: 0;
	  width: 100%;
	}

	.navbar a {
	  float: left;
	  display: block;
	  color: white;
	  background-color: #c69e22;
	  text-align: center;
	  padding: 14px 16px;
	  text-decoration: none;
	  font-size: 17px;
	}

	.navbar a:hover {
	  background-color: #eac44e;
	  color: white;
	}

	.navbar a.active {
	  background-color: white;
	  color: #c69e22;
	}

	.navbar .icon {
	  display: none;
	}
	
	.navbar-right {
      float: right;
    }

	@media screen and (max-width: 600px) {
	  .navbar a:not(:first-child) {display: none;}
	  .navbar a.icon {
		float: right;
		display: block;
	  }
	}

	@media screen and (max-width: 600px) {
	  .navbar.responsive .icon {
		position: absolute;
		right: 0;
		bottom:0;
	  }
	  .navbar.responsive a {
		float: none;
		display: block;
		text-align: left;
	  }

	}