  .image {
    position: fixed;
    bottom: 80px;
    right: 5px;
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 10px 0px 10px 10px;
}

.image:hover {
    transform: scale(1.1);
}
