I am creating a navbar using Bootstrap but the text is stationed on the left. I simply cannot figure out how to get the text to be in the center of the navbar and stay there when resizing and viewing the site on different devices. I have tried bypassing the float: left; with the below code but I still can't figure it out.
body {
    font-family: century gothic;
}
.nav {
    display: inline-block;
    float: none;
}
.li {
    text-align: center;
}
.footer {
    background-color: #263238;
    height: 5%;
}
.footer-text {
    color: white;
    font-size: 20px;
    text-align: center;
    margin-top: 12px;
}<!DOCTYPE html>
<html lang="en">
   <head>
      <meta charset="utf-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <title>My Website</title>
      <link href="css/bootstrap.min.css" rel="stylesheet">
      <link rel="stylesheet" type="text/css" href="styles.css">
   </head>
   <body>
      <nav class="navbar navbar-default">
      <div class="container-fluid-nav">
         <div>
            <ul class="nav navbar-nav">
               <li><a href="#">CSGO</a>
               </li>
               <li><a href="#">ARMA III</a>
               </li>
               <li><a href="#">PUBG</a>
               </li>
               <li><a href="#">Other</a>
               </li>
               <li><a href="#">About</a>
               </li>
               <li><a href="#">External Links</a>
               </li>
            </ul>
         </div>
      </div>
      <div class="footer navbar-fixed-bottom">
         <p class="footer-text">Copyright 2017 ©</p>
      </div>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
      <script src="script.js"></script>
      <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
      <script src="js/bootstrap.min.js"></script>
   </body>
</html>Pretty new to this stuff so sorry if it's staring me straight in the face.
Thanks.
 
     
     
     
    