.album-img{
    background-size: cover;
    background-position: center;
    border-radius: var(--spacing-l);
    bottom: 0;
    filter: brightness(0.75) saturate(1.2) contrast(0.85);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.card:hover .album-img {
    transform: scale(1.02);
    opacity: 0.5;
}

.album-card {
    list-style: none;
    position: relative;
    height: 200px;
    width: 100%;
    background: transparent;
}


.album-card-heading {
    font-weight: 700;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.4;
}


@media (max-width: 480px) {
    .album-card {
        height: 250px;
    }

    .album-card-heading {
        font-weight: 700;
        font-size: 1rem;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .album-card {
        height: 300px;
    }

    .album-card-heading {
        font-weight: 700;
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px){
    .album-card {
        height: 250px;
    }

    .album-card-heading {

        font-weight: 700;
        font-size: 1rem;
    }
}

@media (min-width: 1025px) and (max-width: 1280px){
    .album-card {
        height: 350px;
    }

    .album-card-heading {
        font-weight: 700;
        font-size: 1.2rem;
    }

}
