.footer {
    position: relative;
    height: fit-content;
    background-color: #E7EBFF;
    padding: 50px 0;

    div {
        border-radius: 2rem;
        background-color: white;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    img {
        width: auto;
        height: 4rem;
        margin: 0.5rem;
    }

    .sus-logo {
        padding-left: 32px;
        margin: 32px 32px 32px 0;
    }

    .unasus-logo {
        padding-right: 32px;
        margin: 32px 0 32px 32px;
    }

    .divider {
        width: 1px;
        height: 3rem;
        padding: 0;
        background-color: currentColor;
        display: inline-block;
        opacity: 0.8;
    }

    p,
    a {
        margin-top: 1em;
        color: #fff;
        text-decoration: none;

    }
}

@media (max-width: 1400px) {
    .footer {
        >div {
            flex-direction: column;
        }

        .divider {
            width: 6rem;
            height: 1px;
        }
    }
}

@media (max-width: 1200px) {
    .footer {
        >div {
            flex-direction: column;
        }

        .divider {
            width: 6rem;
            height: 1px;
        }
    }
}

@media (max-width: 700px) {
    .footer div {
        flex-direction: column;
    }
}

.dark-mode {
  #footer {
    background-color: var(--background-color-dark);
  }
  
  .footer {
    background-color: var(--background-color-dark);
    color: var(--text-color-dark);
  }

  
}