body {
    background-color: lightslategrey;
    font-family: 'inter', sans-serif
}

h1, h2, h3{
    color: white;
    text-align: center;
    font-family: 'inter', sans-serif;
}

.song {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 60px;
    padding: 12px, 5px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.song-box {
    background-color: rgb(59, 64, 70);
    padding: 20px;
    margin: 20px auto;
    border-radius: 12px;
    max-width: 800px;
    box-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.song-box img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.song:hover {
    background-color: rgb(59, 64, 70);
    box-shadow: rgba(0,0,0,0.6);
}

.song a {
    text-decoration: none;
    color: white;
    display: contents;
}

.title {
    font-weight: bold;
}

.time {
    text-align: right;
}

.playlist-header {
    background-color: darkgray;
    color: white;
    padding: 15px, 20px;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-family: 'inter', sans-serif;
}

.nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
}

.nav a {
    background-color: #121212;
    color: #b3b3b3;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: rgba(0,0,0,0.6);
}

.nav a :hover{
    background-color: #b3b3b3;
    color: #fff;
}

header {
    background: #121212;
    color: #fff;
    text-align: center;
}

.video {
    text-align: center;
}

.video-caption {
    color: #fff;
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.playlists {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.figcaption {
    font: 1em sans-serif;
    font-weight: 500;
}

.hero {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.hero img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: brightness(70%);
    animation: zoom 12s ease-in-out infinite alternate;
}
 
@keyframes zoom {
    from {transform: scale(1);}
    to {transform: scale(1.08);}
}
.intro {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    color: white;
}

.intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.intro p {
    line-height: 1.6;
    font-size: 18px;
    opacity: 0.9;
}

h4 {
    text-align: center;
    color: white;
}

.card {
    color: #fff;
    background-color: rgb(59, 64, 70);
    font-size: medium;
    border-radius: 12px;
    padding:12px
}

.comparison-table {
    max-width: 900px;
    margin: 40px auto;
    background-color: #121212;
    padding: 25px 30px;
    border: 2px solid #1db95420;
    box-shadow: 0 0 25px rgba(0,0,0,0.45);
    color: #e5e5e5;
}

.comparison-table h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.comparison-table th {
    background-color: #1a1a1a;
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: #1f1f1f;
    transition: 0.2s ease;
}

/*-- mobile --*/


@media (max-width:600px){
    .song-box {
        width: 45%;
    }
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }


nav a {
    padding: 8px 12px;
    font-size: 14px;
}

.hero {
    height: 250px;
    }
}

/* tablet */

@media (max-width: 600px) and (max-width: 900px) {
    .song-box {
        width: 30%;
    }


.hero {
    height: 300px;
    }
}


