footer {
    position: relative;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%;
}

.footerContent {
    z-index: 2;
    position: absolute;
    display: flex;
    justify-content: center;
    width: 75vw;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    bottom: 60px;
}

.footerContent a, .footerContent div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 20%;
    text-decoration: none;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    border-radius: 2px;
}

#footerPrincipal {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: inherit;
    width: inherit;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 127, 0);
    transition: 0.5s;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    bottom: 10px;
}

#footerPrincipal .menuPrincipalIcon {
    height: auto;
    width: 60px;
}

#footerPrincipal:hover {
    transition: 0.5s;
    bottom: 15px;
}

.footerBackground {
    z-index: 1;
    position: absolute;
    height: inherit;
    width: inherit;
    background-image: url("../images/footerBackground.jpg");
    background-size: cover;
    background-position-y: center;
    background-position-x: center;
    background-repeat: no-repeat;
}

@media (width < 1200px) {
    .footerContent {
        width: 85vw;
    }
}

@media (width < 1100px) {
    .footerContent {
        width: 88vw;
    }
}

@media (width < 950px) {
    .footerContent {
        width: 100vw;
    }
}

@media (width < 650px) {
    .footerContent {
        flex-direction: column;
        width: 90vw;
        bottom: -350px;
    }

    .footerContent a, .footerContent div {
        width: 100%;
    }

    #footerPrincipal {
        flex-direction: row;
        width: 95%;
        bottom: 200px;
    }

    #footerPrincipal:hover {
        width: 100%;
        bottom: 200px;
    }

    .footerBackground {
        height: 500px;
    }
}