.audio_Player_grid { 
            display: block; 
            flex-wrap: wrap; 
            justify-content: space-evenly; 
        } 
 
        .HTML_Audio_player { 
            Position: relative; 
            width: 350px; /* You can keep the original width */
            background: #faf3f4; 
            box-shadow: 0 50px 80px rgba(0, 0, 0, 0.25); 
            margin-top: 10px; 
            margin-bottom: 10px; 
            border-radius: 15px; 
            left: 50%; /* Move the element to the right by 50% of the parent container's width */
            transform: translateX(-50%); /* Move the element to the left by 50% of its own width */
        } 
 
        .HTML_Audio_player .Audio_Player_image { 
            position: relative; 
            width: 100%; 
            height: 350px; 
 
        } 
 
        .HTML_Audio_player .Audio_Player_image img { 
            position: absolute; 
            top: 0; 
            bottom: 0; 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            border-top-right-radius: 15px; 
            border-top-left-radius: 15px; 
        } 
 
        .HTML_Audio_player audio { 
            width: 100%; 
            outline: none; 
        } 
 
        .song-name { 
            font-size: 18px; 
            font-weight: 600; 
            display: flex; 
            justify-content: center; 
            margin-top: 10px; 
        } 
 
        audio::-webkit-media-controls-play-button { 
            background-color: #B1D4E0; 
            border-radius: 50%; 
        } 