body {
    position: relative;
    margin: 0;
    padding: 0;
}

#floating-image {
    position: fixed;
    bottom: 5px; /* Adjust the distance from the bottom as needed */
    left: 5px; /* Adjust the distance from the right as needed */
    z-index: 999;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add the drop shadow */
}

#image-link {
    display: block;
    text-decoration: none;
}

#image-link img {
    width: 200px; /* Adjust the width as needed */
    height: auto;
    border: none;
}