.sticky-top {
    background: #2D2C2F;
}

.header {
    height: 60px;
    border-bottom: 0; 
}

.header .tab {
    background-color: #232324;
}

.header .tab .active {
    background-color: #2f2f2f;
    color: rgb(255, 255, 255);
}

.header__btn {
    color: rgba(255, 255, 255, 0.5);
}

.addpost__btn {
    background-color: #fb1c1c;
}

.header .tab a:not(.active):hover {
    color: rgb(255, 255, 255);
}

.films-category {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 576px) {
    .films-category {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .films-category {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .films-category {
        grid-template-columns: repeat(5, 1fr);
    }
}

.card img {
    aspect-ratio: 2/3;
    object-fit: cover;
}