footer a {
    text-decoration: none;
}


.footer-middle {
    background-color: #2b2b2b;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.footer-middle div {
    padding: 0 20px;
}
.footer-middle .logo {
    display: flex;
    align-items: center;
    padding: 0;
}
.footer-middle .logo img {
    display: inline-block;
    width: 50px;
    margin-right: 5px;
}
.footer-middle a {
    text-decoration: none;
}
.footer-middle a h1 {
    color: #ffffff;
    display: inline;
    white-space: nowrap;
}
.footer-middle ul {
    list-style: none;
}
.footer-middle ul li {
    margin: 2px 0;
}
.footer-middle ul li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}
.footer-middle ul li a:hover {
    color: #dddddd;
    transition: 0.3s;
}
footer > .credit {
    background-color: #111111;
    display: flex;
    justify-content: center;
}
footer > .credit > small {
    color: #888888;
    padding: 5px;
    font-size: 13px;
}
footer > .credit > small > a {
    text-decoration: none;
    color: #888888;
}
footer > .credit > small > a:hover {
    transition: 0.3s;
    color: #666666;
}
@media (max-width: 800px) {
    .footer-middle a h1 {
        font-size: 18px;
    }
    .footer-middle div {
        padding: 0 10px;
    }
}