@media(max-width: 799px) {

    .footer-box-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .footer-link {
        color: #ccc;
        text-decoration: none;
        font-size: 90%;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin-left: 10px;
    }

    .footer-link:active {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-category {
        
        width: 100%;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-weight: bold;
        color: white;
        margin-left: 30px;
        margin-bottom: 10px;
    }

    .footer-hr {
        height: 2px;
        width: 80%;
        border-radius: 5px;
        background-color: #888;
        
    }
}

@media(min-width: 800px) {
    .footer-box-links {
        width: 100%;
        height: 90px;
        display: flex;
        align-items: center;
        padding-top: 40px;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .footer-category {
        height: 80px;
        font-weight: bold;
        color: white;
        font-size: 100%;
        margin-left: 50px;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        padding-bottom: 20px;
    }
    
    .footer-link {
        font-weight: normal;
        color: #ccc;
        text-decoration: none;
        font-size: 90%;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin-left: 10px;
    }

    .footer-link:hover {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-hr {
        height: 140px;
        width: 2px;
        border-radius: 5px;
        background-color: #888;
        margin-right: -50;
    }
}

.footer-box-copy {
    width: 100%;
    height: 90px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -3  0px;
    color: #888;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 85%;
}