*{
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}
/* HEADER RELATED GOODS.*/
.header {
  width: 100%;
  height: 106px;
  display: block;
  background-color: rebeccapurple;
}

.inner_header {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  background-color: black;
  display: flex;
  justify-content: space-between;
}

.name {
  height: 100%;
  float: left;
}

.menu {
  float: right;
  height: 100%;
  padding: 49px 1px;
}
.menu li {
  display: inline-block;
  height: 100%;
  color: greenyellow;
  font-family: 'Courier New', Courier, monospace;
  font-size: 26px;
  padding: 5px;
}

.menu li a {
  background-color: black;
  color: darkgreen;
}







/* beyond this point is content related..*/