.footer {
    display: flex;
    flex-flow: column;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    width: 100%;
    bottom: 0;
    position: relative;
    font-size: 16px;
    padding: var(--space-2);
}

.footer .label {
    margin: 0px;
    color: var(--white);
    border-color: var(--white);
}

.social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social li a {
    color: var(--white);
    font-size: 20px;
}

.social li a:hover {
    color: var(--secondary-30);
}

.footer__copyright {
    font-size: 14px;
}

.footer__end {
    border-top: 1px solid var(--primary-60);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer__end-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer h2 {
    font-size: 32px;
}

@media (min-width: 1175px) {
    .footer {
        min-height: 100vh;
    }
    .footer h2 {
        font-size: 88px;
    }
}