body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.music-player {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.album-art img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.song-info {
    margin-top: 1.5rem;
}

.song-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.artist-name {
    font-size: 1.2rem;
    color: #b3b3b3;
}

audio {
    width: 100%;
    margin-top: 2rem;
}