/* Footer */
.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--primary-color);
    height: 12vh;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.footer i {
    font-size: 1.80rem;;
    color : var(--text-color-white);
    cursor: pointer;
}

.footer img:hover {
    filter: brightness(0.8);
    transform: scale(1.2);

}

/* ------------------------- Media Queries ------------------------- */

/* Tablet */
@media (min-width: 480px) and (max-width: 768px) {
    .header {
        height: 13vh;
    }
    .footer i {
        font-size: 2.5rem;
    }
}

/* Pc */
@media (min-width: 769px) {
    .footer{
        display: none;
    }
}


