.floating-shortcut-btn {
    display: block;
    position: fixed;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-shortcut-link {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

.floating-shortcut-link:hover,
.floating-shortcut-link:focus {
    color: #fff;
    text-decoration: none;
}

.floating-shortcut-btn:hover {
    transform: scale(1.18);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}
