.footer {
    background-color: #2e2d2d;
    color: #ffffff;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-row {
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.center-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.facebookLi a {
    color: #1877F2;
}
.facebookLi a, .instagramLi a {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.instagramLi {
    color: #d62976;
}

.contactUsLi {
    color: inherit;
    text-decoration: none;
}

.contactUsLi:hover {
    color: #42c8f3;
    text-decoration: none;
}

/* Mobile View */
@media screen and (max-width: 480px) {
    .footer{
        font-size: 0.875rem;
    }
    .list {
        flex-direction: column;
    }

    .top-row {
        text-align: center;
    }

    .center-row {
        flex-direction: row;
        justify-content: center;
    }
}
