#footer_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--darkGrey);
    box-shadow: 0 0 10px -4px black;
    padding-top: 15px;
}

#footer_main{
    width: 90%;
    max-width: 1000px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
}

#footer_main img{
    width: 200px;
    object-fit: contain;
    object-position: center;
}

#footer_main div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 300px;
}

#footer_logo{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer_main p, #footer_main a{
    margin: 3px 0;
    color: var(--lightAccentColor);
    text-decoration: none;
}

#footer_main a:hover{
    color: var(--accentColor);
}

#footer_main .footer_title{
    margin: 3px 0 10px 0;
    font-size: large;
    color: var(--accentColor);
}

#footer_bottom{
    font-size: small;
}

#footer_bottom p, #footer_bottom a{
    margin-top: 0;
    color: var(--midGrey);
}