.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e6eff6;
    height: 10rem;
}

.footer-logo-container {
    height: 6rem;
    width: auto;
}

.footer-logo-container img {
    height: inherit;
    width: auto;
}

.footer-link-container {
    margin-right: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.footer-link-container a {
    text-decoration: none;
    color: black;
    margin-bottom: 1rem;
    transition: color ease-in-out 200ms;
}

.footer-link-container a:hover {
    color: #9ecedf;
}

/* Responsive Design */
@media only screen and (max-width: 770px) {
    .footer-link-container {
        margin-right: 4rem;
    }
}

@media only screen and (max-width: 770px) {
    .footer-container {
        justify-content: center;
    }

    .footer-link-container {
        margin: 0;
    }

   .footer-logo-container {
       display: none;
   } 
}
/* End of Responsive Design */