@media (min-width: 1026px) {
  #myBtn {
    display: none;
    position: fixed;
    bottom: 1.5vw;
    right: 2vw;
    z-index: 1000;
    border: none;
    outline: none;
    background-color: #c6c6c6;
    color: black;
    cursor: pointer;
    padding: 1vw;
    border-radius: 0.75vw;
    font-size: 1.2vw;
  }

  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }
}

@media (max-width: 1025px) {
  #myBtn {
    position: absolute;
    display: none !important;
  }
}
