.movie-card {
    border-radius: 4px 4px 0 0;
    transition: all .3s ease;
    display: block;
    text-decoration: none;
}

.movie-card-content {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 2/3;
}

.movie-card-image {
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: top;
    transition: all .3s ease;
}


.movie-card-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    font-size: 70px;
    color: var(--active-color);
    transition: opacity .3s ease;
    background: rgba(0, 0, 0, .5);

}

.movie-card-frame:hover {
    opacity: 1;
}

.movie-card:hover .movie-card-image{
    transform: scale(1.05);
}

.movie-card-footer {
    margin-top: 8px;
    overflow: hidden;
}

.movie-title {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .0784313725);
    transition: color .3s ease;
    background-color: transparent;
}

.movie-title:hover{
    color: var(--active-color);
}

.movie-year {
    font-size: 11px;
    color: hsla(0, 0%, 100%, .75);
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .0784313725);
}

@media screen and (max-width: 650px) {
    .movie-title {
        font-size: 12px;
    }
}

@media screen and (min-width: 850px) {
    .movie-title {
        font-size: 14px;
    }
}

@media screen and (min-width: 851px) {
    .movie-title {
        font-size: 16px;
    }
}