html {
  scroll-behavior: smooth;
}

@media (min-width: 1026px) {
  #scroll-top-button {
    display: none;
    position: fixed;
    bottom: 1.5vw;
    right: 2vw;
    z-index: 10;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    color: black;
    cursor: pointer;
    padding: 0.5vw;
    border-radius: 0.75vw;
    border: 0.1vw solid black;
    transition: 0.2s;
  }

  #scroll-top-button .img-box {
    width: 2vw;
    height: 2vw;
  }

  #scroll-top-button .img-box img {
    width: 100%;
    height: 100%;
  }

  #scroll-top-button:hover {
    transform: scale(1.1);
  }
}

@media (max-width: 1025px) {
  #scroll-top-button {
    position: absolute;
    display: none !important;
  }
}
