footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: flex-start;
    width: 80%;
    height: 120px;
    margin-bottom: 50px;
}

.right-column {
    background-color: #3C4648;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 15%;
}

.right-column p {
    color: #FFF;
    font-weight: 600;
    font-size: 20px;
}

.left-column {
    background-color: #F1EAE2;
    width: 85%;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-column p {
    font-weight: 300;
    margin: 0 0 0 20px;
    font-size: 20px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.footer-logo img.logo {
    width: 70%;
    height: 70%;
}

.footer-copyright {
    color: #000;
    font-size: 20px;
    font-weight: 300;
}

.footer-bg {
    position: absolute;
    right: 0;
    z-index: -1;
}

