footer {
    background-color: rgba(2, 2, 2, 0.8);
    display: flex;
    flex: 1;
    justify-content: space-evenly;
    align-items: center;
    z-index: 1;
    font-family: 'Afacad Flux', sans-serif;
    color: #f8f8f8;
    font-size: 0.875rem;
    font-weight: 100;
    width: 100%;
    height: 10em;
    margin-top: -10em;
    position: relative;
    z-index: 10;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 26px;
}

.our-vision {
    display: none;
}


@media only screen and (min-width: 1200px) {

    footer {
        font-size: 1rem;
    }

    .social-media {
        gap: 15px;
        font-size: 1.875rem;
    }

    .our-vision {
        display: block;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1200px) {

    footer {
        font-size: 1rem;
    }

    .social-media {
        gap: 15px;
        font-size: 1.875rem;
    }

    .our-vision {
        display: block;
    }

    .copyright {
        display: block;
        margin-top: auto;
    }

}