#footer *{
    margin: 0;
    padding: 0;
    height: auto;
    width: auto;
}

#footer {
    position: relative;
    cursor: default;
    height: max(640px, 100vh);
    width: 100%;
    overflow: hidden;
}

#footer #footer-background1 {
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
}

#footer #footer-background2 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 60%;
}

#footer #footer-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 8%;
}

#footer .to-decorate {
    position: relative;
    isolation: isolate;
    text-align: center;
    padding: 0px .25em;
    font-family: GothamBlack;
    font-size: min(9vw, 48px);
    line-height: 1em;
}

#footer .to-decorate::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: rgba(51, 204, 153, 1);
    z-index: -1;
}

#footer #footer-header1 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#footer #logos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: min(50vw, 300px);
}
 
#footer .logo-assets {
    width: min(120px, 20vw);
}

#footer #social {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 80vw;
}

#footer .social-container {
    margin: 1vw max(3vw, 25px);
}

#footer .fa {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--font-color);
    border-radius: 50%;
    background-color: var(--font-color);
    color: var(--background-color);
    height: 2em;
    width: 2em;
    font-size: max(24px, 2.5vw);
    text-decoration: none;
    transition-duration: .4s;
}

#footer .fa:hover {
    border-color: #33CC99;
    background-color: transparent;
    color: #33CC99;
    box-shadow: 0 0 10px #33CC99;
}

@media only screen and (max-width: 720px) {
    #footer #footer-content {
        padding-top: 30%;
        justify-content: flex-start;
    }

    #footer #footer-header1,
    #footer #logos,
    #footer #footer-header2,
    #footer #social {
        margin: 1rem 0;
    }

    #footer #footer-background1 {display: none;}
    #footer #footer-background2 {display: none;}
}