.block-and-footer-wrapper {
    display: flex;
    min-height: calc(100vh - 80px);
    flex-direction: column;
    justify-content: space-between;
}

.footer-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

footer {
    border-top: 1px solid var(--footer-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    max-width: 1500px;
    width: 100%;
    height: 50px;
}

footer div {
    width: 33.3%;
}

.social-icons {
    display: flex;
    width: 33.3%;
    margin-left: 20px;
}

.social-icons img {
    margin-right: 30px;
    width: 28px;
}

.footer-logo {
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.25em;
    color: var(--orange);
    width: fit-content;
}

.social-icons img:hover {
    filter: alpha(Opacity=50);
    opacity: 0.5;
}

@media(max-width: 1000px) {
    .social-icons img {
        margin-right: 20px;
        width: 28px;
    }
}

@media (max-width: 800px) {
    .footer-wrapper {
        background-color: var(--white);
        height: 100px;
    }

    footer {
        width: 90vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100px;
    }

    .social-icons {
        position: relative;
        margin-left: 0;
        width: 80vw;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .social-icons img {
        margin-right: 0;
    }

    .footer-logo {
        font-size: 1.125em;
        margin-bottom: .5em;
    }
}
