        *{
            font-family: 'inter', sans-serif;
        }
        #player{
            background-color: #ddd;
            padding: 10px;
            width: 300px;
            height: 500px;
            margin: auto;
            margin-top: 50px;
            border-radius: 20px;
        }
        #image{
            border-radius: 50%;
            width: 150px;
            height: 150px;
            object-fit: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto;
            margin-top: 30px;
        }
        #title, #artist{
            text-align: center;
            color: #000;
        }
        #lyrics{
            padding: 15px;
            background-color:#eee;
            border: none;
            border-radius: 50px;
            color: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto;
            width: 60%;
            margin-top: 40px;
            cursor: pointer;
        }
        #lyrics:hover{
            background-color: #00bbff;
            color: #fff;
        }
        audio{
            margin-top: 50px;
        }
        a{
            text-decoration: none;
        }
        a:hover{
            text-decoration: none;
        }

        #navigator #left{
            left: 0;
            margin-left: 20px;
        }
        #navigator #right{
            right: 0;
            margin-right: 20px;

        }
        #navigator #right, #left{
            cursor: pointer;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: none;
            position: fixed;
            bottom: 0;
            margin-bottom: 30rem;
        }
        #navigator #right:hover, #left:hover{
            background-color: #00bbff;
            color: #fff;
        }
        #footer p{
            margin-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #bbb;
        }
        @media (max-width:600px) {
            #navigator #left{   
                margin-left: 37px;
            }
            #navigator #right{   
                margin-right: 37px;
            }
        }  