
/*
Author
Mehmet Burak Erman
December 18, 2017
*/


.menu {
	font-family: 'Roboto', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 350px;
  margin: 0 auto;
  height: 7vh;
  list-style: none;
}

.menu li {
  width: 160px;
  height: 30px;
  text-align: center;
  
  padding-top: 0.7vh;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.menu li a {
  font-size: 15px;
  color: #fff;
  ;
}
.menu li:hover {

}
.menu li:hover a {
  color: #EA5C1C;

  
}
.menu li:not(:last-child) {
  margin-right: 30px;
}
