/* bottomnav */

* {
    box-sizing: border-box;
  }
  
  /* Style the top navigation bar */
  .bottomnav {
    overflow: hidden;
    background-color: rgb(3, 3, 3);
  }
  
  /* Style the topnav links */
  .bottomnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
  }
  
  /* Change color on hover */
  .bottomnav a:hover {
    background-color: rgb(97, 143, 243);
    color: black;
  }
  
  /* On screens that are 600px wide or less, make the menu links stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .bottomnav a {
      float: none;
      width: 100%;
    }
  }
  
  /*  HTML Elements....=>
  
  <body>
  
  <h2>Responsive navigation menu</h2>
  <p>Resize the browser window to see the effect: When the screen is less than 600px, the navigation menu will be displayed vertically instead of horizontally.</p>
  
  <div class="topnav">
    <a href="#">Link</a>
    <a href="#">Link</a>
    <a href="#">Link</a>
  </div>
  
  </body>
                */