/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
    background-color:#252526;
    color:white;
    font-family: Verdana;
  }
  header{position:fixed;z-index:1;width:98%;height:auto;margin-top:-8px;margin-left:auto;margin-right:auto;}
  nav{margin-left:auto;width:auto;display:flex}
  .logo{height:64px; width:80px;border:2px gray solid;border-radius:50%;}
  nav > ul{display:inline;margin:auto;}
  #centrar{width:100%;}
  Nav > ul > li{
  list-style:none;
  display:inline-block;
  border:2px gray solid;
  padding:5px;
  margin:2px;
  background:linear-gradient(#555555 10%, #000000 100%);
  text-align:center;
  width: 100px;;
  border-radius:8px;}
  
  nav > ul > li > a{
  text-decoration:none;
  color:#AB580A;
  text-shadow:0 -1px 1px #FAE9A5;
  padding:5px;
  margin:auto;
  font-family:'Black Ops One';
  font-weight:bold;
  font-size:18px;
  }
  nav > ul > li:hover{
  background:linear-gradient(#000000 50%, #555555 100%);
  border-style:inset;
  border-radius:10px;
  }
  nav > ul > li > a:hover{
  color:orange;
  text-shadow:0 2px 2px #FAE9A5;
  }