.menu-container{
    display: flex;
    background-color: black;
    width: 250px;
    height: 55px;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px,
          rgba(8, 8, 8, 0.5) 5px 10px 15px;
    
    margin: auto;
    position: sticky;
    bottom: 1vh;
    left: 0;
    display: none;
    z-index: 999;
  }
  .girl{
    transform: translateX(-20px);
  }
  .page-link {
    outline: 0 !important;
    border: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
  }
  
  .page-link:hover {
    transform: translateY(-3px);
  }
  
  .page-icon {
    height: 15px;

  }