#scroll-to-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: transparent;
    padding: 10px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

#scroll-to-top-button a {
    display: block;
    width: 50px; /* Set the width of the image */
    height: 50px; /* Set the height of the image */
}

#scroll-to-top-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#scroll-to-top-button:hover img {
    transform: scale(1.1); /* Adds a slight zoom effect on hover */
}
