* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    font-size: 18px;
    color: #f1c40f;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #f1c40f;
    color: #000;
    border-radius: 5px;
}

footer {
    background-color: #000;
    color: #f1c40f;
    text-align: center;
    padding: 15px;
    width: 100%;
    bottom: 0;
}

main {
    padding: 50px 20px;
}

.music {
    text-align: center;
    margin-bottom: 50px;
}

.music h2 {
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 40px;
}


.song-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.song-item {
    background-color: #1c1c1c;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.song-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.song-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.song-item h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
}

.song-item p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
}

.song-item audio {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
}

.song-item button {
    background-color: #f1c40f;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.song-item button:hover {
    background-color: #e67e22;
}

.song-item .like-btn {
    background-color: transparent;
    color: #f1c40f;
    border: 2px solid #f1c40f;
    padding: 5px 10px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}

.song-item .like-btn:hover {
    background-color: #f1c40f;
    color: #000;
}

@media (max-width: 768px) {
    .music h2 {
        font-size: 2rem;
    }

    .song-list {
        grid-template-columns: 1fr;
    }

    .song-item {
        width: 95%;
    }
}
li{
    list-style-type: none;
}
