/* The navigation menu */
.navbar {
  /*overflow: hidden;*/
  color: white;
}

/* Navigation links */
.navbar a {
  float: center;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The subnavigation menu */
.subnav {
  float: center;
  overflow: hidden;
}

/* Subnav button */
.subnav .subnavbtn {
  font-size: 15px; 
  font-family: kanit;
  font-weight: 300!important;
  text-transform:uppercase;
  border: none;
  float: center!important;
  text-align: center!important;
  outline: none;
  color: white;
  padding: 25px 16px;
  background-color: inherit;
  margin: 0;
}

/* Add a red background color to navigation links on hover */
.navbar-navo a:hover, .subnav:hover {
  background-color: #4d4d4d;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
  font-size: 15px; 
  font-family: kanit;
  font-weight: 200;
  display: none;
  position: absolute;
  left: 0px;
  background-color: #4d4d4d;
  /*padding: 0px 16px;*/
  width: 100%;
  z-index: 1;
}

/* Style the subnav links */
.subnav-content a {
  float: left;
  color: white;
  text-decoration: none;
}

/* Add a grey background color on hover */
.subnav-content a:hover {
  border-bottom: solid 3px #f00000;
  color: white;
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  display: block;
}