body > footer {
    color: white;
    /* padding-bottom: 40px; */
}

#footer {
    text-align: center;
    font-size: .8em;
}

#footer main article,
#footer main nav {
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid white;
}

#footer main article section,
#footer main nav ul {
    display: flex;
    flex-direction: column;
}

#footer main article:last-child{
    border-bottom: unset;
}


#footer main article h1,
#footer main nav h1 {
    font-size: 1.5em;
    margin: 10px 0 20px;
    font-weight: lighter;
}

#footer main p {
    max-width: unset;
}


#footer .contact {
}

#footer .contact p {
}

#footer nav {

}

#footer .info {

}

@media(min-width:800px){

    #footer main article,
    #footer main nav {
        padding-top: 10px;
        padding-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #footer main article h1,
    #footer main nav h1 {
        margin: 0 20px 0 0;
        font-size: 1.2em;
    }

    #footer main article section,
    #footer main nav ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #footer main article section p,
    #footer main nav ul li {
    }

    #footer main article section p:after,
    #footer main nav ul li:after {
        content: "/";
        margin: 0 15px;
    }

    #footer main article section p:last-child:after,
    #footer main nav ul li:last-child:after {
        content: "";
        margin: 0;
    }
}