:root {

    --menuColor: #151515;

    --menuIcons: #EEbc1d;

  }

  #menuBack {

    

    position: fixed;

    height: 100%;

    border: none;

    z-index: 999;

    right: 0px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    top: 0;

  }

  #menu {

    width: 60px;

    height: 100%;

    position: fixed;

    z-index: 999;

    right: 0px;

    background-color: var(--menuColor);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

  }

  .menuIcon {

    width: 50px;

    flex: 1;

    flex-direction: column;

    justify-content: center;

    display: flex;

    align-items: center;

    margin: 5px;

    cursor: pointer;

  }

  .menuIcon svg {

    fill: var(--menuIcons);

    width: 43px;
    
    transition: transform 250ms;

  }
 .menuIcon :hover svg {
    transform: scale(0.5);
     background-color: blue;
  }
  @media screen and (max-width:750px) {


    #menuBack {

      width: 100%;

      bottom: 0px;

      flex-direction: row;

      height:0px;

    }

  

    #menu {

      width: 100%;

      height: 60px;

      bottom: 0px;

      flex-direction: row;

      border-radius: 0px 0px 0px 0px;

    }

    .menuIcon {

      width:38px;

      flex-direction: row;

    }

    .menuIcon svg {

      width: 34px;

    }
