body {
  font-family: Arial, Helvetica, sans-serif;
}

.navbar {
  display:flex;
  background-color: #FEBC2A;
  justify-content:center;
}

.navbar a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25em;
  color: black;
  text-align: center;
  padding: 5px 25px;
  text-decoration: none;
}

.dropdown {
  display:flex;
  flex-direction:column;
  background-color: #FEBC2A;
	font-family: Arial, Helvetica, sans-serif;
}

.dropdown .dropbtn {
  font-size: 1.5em;  
  border: 1px solid rgba(0,0,0,0.57);
  border-radius: 7px 7px 0 0;
  outline: none;
  color: black;
  padding: 5px 25px;
  background-color: inherit;
  font-family: inherit;
	font-weight:bold;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
	margin-top:38px;
  background-color: #FEBC2A;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 5px 10px 5px 15px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

hr.style-one {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

hr.style-two {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

hr.style-three {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}