* {
    margin: 0;
    padding: 0;
}
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}
.footer-social ul {
    list-style: none;
    padding: 0 !important;
}
.footer-social * > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 90px;
    text-decoration: none;
}
.footer-social * > a > span {
    color: var(--bs-dark);
}

.text-indigo {
    color: #6610f2;
}

@media only screen and (max-width: 600px) {
    .footer-social * > a > span {
        display: none;
        min-width: 0;
        gap: 0;
    }
    .footer-social * > a {
        min-width: 0;
    }
}