.footer-container
{
    position: relative;
    background-color: rgb(85, 85, 85);
    min-width: 100%;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}
.footer
{
    font-family: 'Noto Sans', sans-serif;
    height: 80%;
    width: 100%;
    background-color: rgb(85, 85, 85);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row-reverse;
}
.footer-list, .footer-list a
{
    list-style-type: none;
    font-size: 13px;
    color: white;
    user-select: text;
}
.footer-list a
{
    text-decoration: underline;
}
.footer-list a:hover
{
    color: rgb(106,170,60);
}
.list-title img
{
    height: 25px;
    width: auto;
}
.htmark-span
{
    color: white;
    font-size: 13px;
    left: 15px;
    bottom: 15px;
}
.htmark-span a
{
    color: white;
    text-decoration: underline;
}
@media only screen and (max-width: 900px) 
{
    .footer-list, .footer-list a
    {
        font-size: 13px;
    }
    .htmark-span
    {
        font-size: 10px;
    }
    .footer
    {
        margin-right: 10%;
    }
    
}