footer{
    background-color: white;
    color: rgba(0,0,0,0.45);
    font-size: 0.8rem;
    line-height: 1.5;
}

.content_container{
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 0 0.2em;
    align-items: stretch;
}

.content_container .main_content{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2em 0;
}

.links_list{
    list-style: none;
    display: flex;
    margin: 1em 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 0.25em;
}

.links_list_item{
    display: block;
    text-wrap: nowrap;
    border: 1px solid #D2D2D2;
    border-radius: 0.25em;
    font-weight: 600;
    color: rgba(0,0,0,0.45);
    padding: 0.5em 1em;
    cursor: pointer;
}

.links_list_item:hover{
    color: rgba(0,0,0,0.65);
}


.horizontal_separator{
    height: 1px;
    width: 100%;
    background-color: rgba(0,0,0,0.1);
}


.meta_content .md-copyright{
    margin: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.meta_content .md-copyright .md-copyright__highlight{
    color: rgba(0,0,0,0.45);
 }

@media screen and (max-width: 768px){
    .content_container .main_content{
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }
}





