footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2c3844a9;
    padding: 10px;
    width: 101.6%;
    height: auto;
    z-index: 1000;
    position: absolute;

}

.linkedin-link {
    color: white;
    text-decoration: none;
}

.linkedin-link:hover {
    text-decoration: underline;
}

.fa-hand-point-up {
    display: inline-block;
}

.footer-logo {
    max-width: 15%;
    width: auto;
    height: auto;
    transition: transform 0.3s ease; /* Añade una transición para la animación */
}

.footer-logo:hover {
    transform: scale(1.5); /* Aumenta el tamaño al pasar el mouse */
}


@media (200px <=width <=1024px) {

    
    footer {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        width: auto;
        height: auto;
        position: relative;
        background-color: #2c3e50ae;
    }

    .footer-logo {
        max-width: 30%; /* Aumentar ligeramente para pantallas pequeñas */
    }

    .linkedin-link {
        font-size: 0.9em; /* Reducir el tamaño de fuente de los enlaces */
    }

    .fa-hand-point-up {
        font-size: 1.5em; /* Reducir el tamaño del icono */
    }
    
    .row {
        flex-direction: column; /* Cambiar a columna para un mejor ajuste */
        align-items: center; /* Centrar los elementos */
    }

    .blink {
        font-size: 0.5em; /* Reducir tamaño de texto para el efecto de parpadeo */
    }
}
