footer{
    background-color: black;
    color: var(--link-color);
}

#footer-container{
    max-width: 1500px;
    padding: 20px;
    margin: 0 auto;
}

#work-location iframe{
    width: 100%;
}

footer .grid{
    display: grid;
    grid-template-columns: repeat(1,1fr);
}

#work-location{
    width: 100%;
    max-width: 600px;
    max-height: 200px;
}

#work-location iframe{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.header-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header-footer h1{
    margin-right: 10px;
}

footer ul
{
    /*Removes the bullets.*/
    list-style-type: none;
    /*Removes browser default settings.*/
    margin: 0;
    padding: 0;
    overflow: hidden;
}

footer ul li
{
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}

footer ul a
{
    text-decoration: none;
}

footer .nav-link:hover{
    color: var(--link-color);
}

@media (min-width: 1571px) {
    footer .grid{
        grid-template-columns: repeat(4,1fr);
    }
    
}