﻿body {
    background-color: black;
}

.border-black{
    border-color:black;
}

.article-image {
    width: 100%;
    height: 658px;
    object-fit: cover;
}

.article-image-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 160px;
}

.article-side-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.article-side-image-tile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}

@media (max-width: 768px) {
    .article-image {
        height: auto;
    }
}

@media (max-width: 992px) {
    .article-image {
        height: auto;
    }

    .article-side-image {
        height: auto;
    }
}