
        .music-player {
            position: fixed;
            bottom: 10px;
            left: 10px;
            width: 70px;
            height: 70px;
            cursor: pointer;
            z-index: 99999999999;
        }

        .disc {
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .disc.spin {
            animation: spin 5s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }
 