/* Back to top button */

.btnToTop svg {
    width: 70px;
    height: 70px;
    padding: 9px;
    border-radius: 7px;
    /* background: #6e6e6e; */
    fill: #c2c2c2;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    transition: all .1s ease-in-out;
    cursor: pointer;
    background: transparent;
  }
  
  .btnToTop svg:hover {
    background: #222222;
    fill: #d1d1d1;
  }