* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
}

body {
    background: #FCF9EA;
    color: #FFA4A4;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #BADFDB;
    color: #FFA4A4;
}

.nav .brand {
    font-weight: 700;
    font-size: larger;
}

.nav nav a {
    color: #FFA4A4;
    margin-left: 14px;
    text-decoration: none;
    font-weight: 600;
}

.nav nav a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.nav img {
}

.container {
    max-width: 1000px;
    margin: 32px auto;
    padding: 0 16px;
}

h2

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
}

.card p {
    font-weight: 600;
}

.card a {
    margin-top: auto;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 6px;
    background: #FFBDBD;
    color: white;
    font-weight: 700;
}

.card a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width:480px) {
    .nav {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}