.footer-main-container {
    background-color: #575757;
    color: #FEFEFE;
    width: auto;
    height: fit-content;
    margin: 0;
    padding: 0;

}

.footer-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 10%;
    height: auto;
    margin: 0;
}

.links-container ul {
    display: flex;
}

.links-container ul li {
    height: fit-content;
    width: fit-content;
    padding: 0 10px;
    text-transform: uppercase;
    font-size: .9rem;
    list-style: none;
    font-weight: 300;
    transition: ease all .3s;
}

.links-container ul li:not(:last-child) {
    border-right: #fefefe solid 1px;
}

.links-container ul li:hover {
    cursor: pointer;
    color: #a7de65;
}

.copyright-container {
    width: 100%;
    text-align: center;
    border-top: #fefefe solid 1px;
    margin-top: 20px;
}

.copyright-container p {
    padding: 0;
    margin-top: 20px;
    font-weight: 200;
    line-height: 1.2rem;
    font-size: .9rem;
}
