/* Anchor Target */
    .thetop {
      position: absolute;
      top: 0;
    }

    /* Button container, initially hidden */
    .scrolltop {
      display: none;
      z-index: 999;
    }

    .scrolltop.show {
      display: block;
    }

    /* Button styling */
    .scroll {
      width: 56px;
      height: 56px;
      position: fixed;
      bottom: 20px;
      right: 16px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .scroll:hover {
      width: 60px;
      height: 60px;
      background-color: rgba(255, 255, 255, 0.2);
      opacity: 1;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .scroll-to-top-arrow {
      border: solid #ffffff;
      border-width: 0 2px 2px 0;
      display: inline-block;
      padding: 8px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-135deg);
    }

    /* Desktop */
    @media only screen and (min-width: 2230px) {
      .scroll {
        right: 20%;
        bottom: 3%;
      }
    }

    /* Mobile */
    @media all and (max-width: 734px) {
      .scroll {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 16px;
      }
    }