MenuStyleMenuStyleMenuStyleMenuStyleMenuStyle@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);

.MenuStyle {
  font-family: 'Raleway', Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  background-color: #444444;
color: white;    
}
.MenuStyle * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background-color: #444444;
    color: white;
}
.MenuStyle li {
  display: inline-block;
  list-style: outside none none;
  margin: 0.5em 1.5em;
  padding: 0;
  background-color: #444444;
    color: white;
}
.MenuStyle a {
  padding: 0.3em 0;
  color: #171616;
  position: relative;
  text-decoration: none;
  display: inline-block;
  background-color: #444444; 
    color: white;
}
.MenuStyle a:before,
.MenuStyle a:after {
  height: 3px;
  position: absolute;
  content: '';
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background-color: #9b59b6; // Double stripes
  width: 0;
    color: white;
}
.MenuStyle a:before {
  top: 0;
  left: 0;
}
.MenuStyle a:after {
  bottom: 0;
  right: 0;
}
.MenuStyle a:hover,
.MenuStyle .current a {
  color: #77ff77; // letter color
}
.MenuStyle a:hover:before,
.MenuStyle .current a:before,
.MenuStyle a:hover:after,
.MenuStyle .current a:after {
  width: 100%;
}