#blogDiv
{
    display: flex;
    flex-direction: row;
}

.blogElements
{
    width: 60vw;
}

.blogElement {
    margin-left: 5vw;
    width: 50vw;
    height: 45vh;
    transition: background-color ease 0.3s;
    margin-right: 5vw;
    margin-bottom: 5vh;
}

.blogElement:hover
{
    background-color: #e7e7e8;
    cursor: pointer;
}

.blogImg
{
    height: 20vh;
    width: 40vw;
    padding: 5vh;
    overflow: hidden;
    object-fit: cover;
}

.blogTitle
{
    padding-left: 3vw;
    font-size: 3vh;
    font-family: 'Roboto';
    font-weight: bolder;
    padding-bottom: 2vh;
    max-width: 35vw;
}

.blogSummary
{
    padding-left: 3vw;
    color: #646566;
    font-family: 'Roboto';
    max-width: 35vw;
}

#blogOthers {
    display: flex;
    /* justify-content: center; */
    width: 40vw;
    flex-direction: column;
    align-items: center;
    background-color: rgb(0 0 0 / 83%);
}

.othersTitle
{
    padding-top: 5vh;
    font-size: 3vh;
    font-family: 'Roboto';
    font-weight: bolder;
    padding-bottom: 2vh;
    color: rgb(255, 255, 255);
}

.othersSummary {
    color: #ffffff;
    font-family: 'Roboto';
    padding-bottom: 10vh;
    padding-left: 2vw;
    padding-top: 4vh;
    line-height: 4vh;
}

.othersArticle
{
    font-family: 'Roboto';
    height: 8vh;
    width: 25vw;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: #ffffff77 1px solid;
    color: rgb(255, 255, 255);
    transition: color ease 0.3s;
}

.othersArticle.first
{
    padding-top: 3vh;
}

.othersArticle.last
{
    border-bottom: none;
}

.othersArticle:hover
{
    color: rgb(5, 142, 196);
    cursor: pointer;
}