body {
    background-color: #f7f4ed;
}

div.header {
    color: #000000;
}

.container {
    padding: 0 63px;
}
.bread {
    opacity: .5;
}
.title {
    font-size: 2rem;
    margin: 17px 0;
}
.video-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 68px;
    .item {
        display: flex;
        align-items: end;
        justify-content: center;
    }
    .item > div {
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: center;
        img {
            cursor: pointer;
            height: 100%;
            width: 100%;
        }
        span {
            cursor: pointer;
            font-weight: bold;
            line-height: 2.6rem;
        }
        span:hover {
            text-decoration: underline;
        }
    }
}

