  body {
    background-color: #fff;
  }
  
  .Menu_Bar {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #0a0a23;
    color: #fff;
    border-bottom: 6px solid #fdb347;
    overflow: hidden;
    padding: 32px;
  }
  
  /* Style the links */
  .Menu_Bar a {
    text-align: center;
    color: #f2f2f2;
    padding: 14px 5%;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .Menu_Bar a:hover {
    background-color: #fdb347;
    color: #000;
  }
  
  /* Add a color to the current link */
  .Menu_Bar a.active {
    background-color: #fff;
    color: #000;
  }