footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dcdcdc;
    padding: 20px 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    margin-top: 5px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    margin: 0 8px;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.footer-socials {
    margin-top: 10px;
}

.footer-socials a {
    color: #000;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #ffe600; /* Change color on hover (LinkedIn blue as example) */
    transform: scale(1.2);
}

@media (max-width: 650px) {
    footer {
        font-size: 0.70rem;
    }

    .footer-links {
        font-size: .75em;
    }

    .footer-socials a {
        font-size: .80rem;
    
    }

    /* .footer-links a {
        display: block;
        margin: 4px 0;
    } */
}


@media screen and (min-width: 651px) and (max-width: 1024px) {
    footer {
        font-size: 0.80rem;
    }

    .footer-links {
        font-size: .85em;
    }

    .footer-socials a {
        font-size: .90rem;
    
    }
  
}