.topnav {
  overflow: hidden;
/*   background-color: #AE8131; */
/*   display: flex; */
/*   flex-direction: row; */
  z-index: 1;
  justify-content: center;
  align-self:center;
/*   border-radius: 10px; */
}

.topnav a {
  float: left;
  background-color: #AE8131;
  color: #3C1900;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
  font-size: calc(12px + 1vw);
  font-weight: bold;
  display: block;
  margin: 15px 5px;
  border: 2px solid #632900;
  border-radius: 10px;
}

.topnav a:hover {
  background-color: #D2A75A;
}

.topnav a.active {
  background-color: #634000;
  color: #AE8131;
}

/* .topnav a:last-child{ */
/* 	border-right: none; */
/* } */

.sidenav {
    height: 100%;
    width: auto;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    z-index: 1;
	background-color: #ffffff;
    overflow-x: hidden;
    padding-top: 10px;
}

.sidenav a {
	padding: 14px 16px;
	color: #4CAF50;
	text-align: center;
	text-decoration: none;
	font-size: calc(6px + 1vw);
	display: block;
}

.sidenav a:hover {
	background-color: #ddd;
	color: black;
}

.sidenav a.active {
  background-color: #4CAF50;
  color: white;
}

.main {
	margin-left: 182px; /* Same as the width of the sidenav */
}

@media screen and (max-height: 450px) {
    .topnav {padding-top: 5px;}
    .topnav a {font-size: 18px;}
	.sidenav {padding-top: 5px;}
    .sidenav a {font-size: 18px;}
}