html {
  scroll-behavior: smooth;
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: 999;
    text-align: center;
    background-color: #e6a756;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    font-family: Raleway,sans-serif;
  }
  
  .mobile-nav li {
    /* display: flex; */
    /* text-align: center; */
    /* width: 50%; */
    /* box-shadow:0px 0px 0px 1px #ffff inset; */
    width: 100%;
    /* margin: auto; */
    border: 1px solid #fff;
  }
  
  .mobile-nav li:hover,
  .mobile-nav li:focus {
    background-color: #412c26;
  }
  
  .mobile-nav a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
  }
  
  #toTopBtn {
    display: none;
    position: fixed;
    bottom: 65px;
    right: 5px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #2f170f;
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 4px;
  }