footer{
    background-color: var(--background-color);
    padding: 4em;
    position: absolute;
    width: 100vw;
    z-index: 10;
}

.footer-title{
    font-size: 1.3em;
    color: var(--white);
}

.gap{
    gap: 2em;
}

.footer-item{
    color: var(--white);
    font-size: 2em;
}

.footer-item{
    animation: onOff linear both;
    animation-timeline: view();
    animation-range: entry 60% cover 60%;
    animation-duration: 1ms;
}

@keyframes onOff {
    from{
        transform: translateX(-50%);
      }
      to{
        transform: translateX(0%);
      }
}

@media screen and (max-width:700px) {
    footer{
        flex-direction: column;
        gap: 3em;
        justify-content: center;
        align-items: center;
    }
    .item{
        max-width: 32px;
    }
}

@media screen and (max-width:500px) {
    footer{
        padding: 2.5em;
    }
}

@media screen and (max-width:375px) {
    .footer-title{
        font-size: 1.1em;
    }
}