/*                       .-'''-.                                                                    ___   
                         '   _    \                                                               .'/   \  
              /|       /   /` '.   \                          __  __   ___         __.....__     / /     \ 
              ||      .   |     \  '                         |  |/  `.'   `.   .-''         '.   | |     | 
              ||      |   '      |  '          .|            |   .-.  .-.   ' /     .-''"'-.  `. | |     | 
        __    ||  __  \    \     / /         .' |_           |  |  |  |  |  |/     /________\   \|/`.   .' 
     .:--.'.  ||/'__ '.`.   ` ..' /_    _  .'     |          |  |  |  |  |  ||                  | `.|   |  
    / |   \ | |:/`  '. '  '-...-'`| '  / |'--.  .-'          |  |  |  |  |  |\    .-------------'  ||___|  
    `" __ | | ||     | |         .' | .' |   |  |            |  |  |  |  |  | \    '-.____...---.  |/___/  
     .'.''| | ||\    / '         /  | /  |   |  |            |__|  |__|  |__|  `.             .'   .'.--.  
    / /   | |_|/\'..' /         |   `'.  |   |  '.'                              `''-...... -'    | |    | 
    \ \._,\ '/'  `'-'`          '   .'|  '/  |   /                                 .CSS           \_\    / 
     `--'  `"                    `-'  `--'   `'-'                                                  `''--'  */

*{
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  background-color: rebeccapurple;
}
/* 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: 50%;
  float: left;
}

.menu {
  float: right;
  height: 100%;
  padding: 53px 1px;
  background-color: black;
}
.menu li {
  display: inline-block;
  height: 100%;
  font-family: 'Courier New', Courier, monospace;
  font-size: 22px;
  padding: 5px;
  background-color: black;
}
.menu li a {
  background-color: black;
  color: darkgreen;
}
/* beyond this point is content related..*/

.metabody {
  width: 100%;
  height: 100vb;
  display: block;
  justify-content: baseline;
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  
}
.inner_body {
  width: 70%;
  height: 100%;
  display: block flex;
  margin: 0 auto;
  justify-content: baseline;
  float: center;
}
.header_of_body {
  padding: 5%;
  text-indent: 5%;
  width: 100%;
  height: 100%;
  display: inline-block flex;
  align-items: center;
  color: greenyellow;

}


