div.scrollmenu {
    overflow: auto;
    white-space: nowrap;
    padding: 4px;
    margin-bottom: 0px;
    position: fixed;
    bottom: 0;
    width: 80vw;
    background-color: rgb(46, 51, 61);
   
    border-width: 4;
    border-color: #14161a;
    border-style: solid;
    z-index: 1;
  }
  
  div.scrollmenu a {
    font-family: "Tomorrow";
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    color: whitesmoke;
    text-align: center;
    padding: 4px;
    text-decoration: none;
  }
  
  div.scrollmenu a:hover {
    color: rgb(9, 10, 12);
    background-color: rgb(211, 253, 239);
  }


  @media screen and (min-width: 700px) {
    .scrollmenu {display: none;}
  }