.customhtml__title {
    font-size: 1.75rem;
    font-weight: 600;
}
.customhtml__content {
    font-size: 1rem;
    font-weight: 500;
}

.customhtml__footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    color: white;
    margin-bottom: 3rem;
    width: 100%;
    min-height: 300px;
    z-index: 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #777;
}
.customhtml__footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.75);
    z-index: -1;
}

.customhtml__link:after {
    content: attr(name);
    display: block;
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.customhtml__link img {
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    .customhtml__link:after {
        content: '';
        display: none;
    }
}

@media (min-width: 992px) {
    .customhtml__title {
        font-size: 2.75rem;
    }

}