.gotop{
    position: fixed; 
    width: auto;
    left: 2%;
    bottom: 5px;
    height: auto;
    
    padding: 25px 15px;
   
    border: none;
    outline: none;
    z-index: 1;
    cursor: pointer;

    background-color: black;
    color: white;
    border-radius: 100%;
    transition: all 0.5s;
    cursor: pointer;
  }




.gotop:hover{
   transform: scale(1.1,1.1);
}

@media screen and (max-width: 1000px) {
  .gotop{
    padding: 20px 10px;
  }
}