footer {
    width: 100vw;
    height: auto;
    box-sizing: border-box;
    padding: 50px 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
footer > div {
    display: flex;
    gap: 20px;
}

#linkedIn, #behance {
    display: block;
    width: 50px;
    height: 50px;
}

footer > p {
    width: 70%;
    text-align: center;
    font-size: 14px;
    color: var(--primary);
}

@media screen and (min-width:650px) {
    footer {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 0;
    }
    footer > p {
        width: auto;
        text-align: left;
        font-size: 16px;
        margin-left: 7vw;
    }
    footer > div {
       margin-right: 7vw;
    }
}