
body {
  margin: 0;
}
nav { background: rgba(255, 255, 255, 0.500); 
  border-bottom: 1px solid rgba(7, 7, 7, 0.280);
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  outline: none;
  display: block;
  transition: .4s ease-in-out;
}
.topmenu {
  text-align: center;
  padding: 20px 0;
}
.topmenu > li {
  display: inline-block;
  position: relative;
}
.topmenu > li:after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 12px;
  background: #000000;
  top: 16px;
  box-shadow: 4px -2px 0 #000000;

}
.topmenu > li:last-child:after {
  background: none;
  box-shadow: none;
}
.topmenu > li > a {
  margin-left: 2px;
  margin-right: 5px;
  padding: 12px 26px;
  color: #000000;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
}
.topmenu li a:hover { color: #ffffff; background: rgba(180, 134, 6, 0.623);border-radius: 15px 5px; border: 1px solid rgba(7, 7, 7, 0.280);padding-left: 10px;}
.submenu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 210px;
  margin-left: -105px;
  background: rgba(255, 255, 255, 0.829);
  border: 1px solid #000000;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transform: scale(.8);
  transition: .4s ease-in-out;
  border-radius: 15px 5px;
}
.submenu li a {
  padding: 10px 0;
  margin: 0 10px;
  border-bottom: 1px solid #000000;
  font-size: 18px;
  color: #000000;
  font-family: 'Kurale', serif;
  
}
.topmenu > li:hover .submenu {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}