﻿.footer {
    min-height: 220px;
    background-color: var(--neutral-color-2);
    color: var(--secondary-color);
    margin-bottom: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    padding: 30px;
    gap: 25px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.footer-connect {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    font-size: 2rem;
    font-weight: 700;
}

#Connect-with-me {
    scroll-margin-top: 120px;
}

.footer-text {
    padding-left: 45px;
    border-left: 2px solid var(--primary-color);
    max-width: 450px;
}

.footer-link {
    color: inherit;
    font-style: normal;
    font-size: 35px;
    text-decoration: none;
    transition: filter 200ms ease-in-out;
}

.footer-link:hover {
    filter: drop-shadow(0 0 4px var(--secondary-color));
}

@media all and (max-width: 800px) {
    .footer-text {
        border-left: 0;
        border-top: 2px solid var(--primary-color);
        padding-left: 0;
        padding-bottom: 35px;
        padding-top: 45px;
    }

    .footer {
        flex-direction: column;
        gap: 35px;
    }
}