footer{
    width: 100%;
    /* background-color: black; */
    /* box-shadow: inset 0 0 100px var(--shade-1); */
}

.footer-container{
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

@media only screen and (max-width: 600px) {
    .footer-container{
        flex-direction: column;
    }
}

.footer-element{
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    width: fit-content;
    min-width: 40vw;
    margin-bottom: 20px;
    
    object-fit: cover;
    /* overflow: hidden; */

    text-decoration: none;
    transition: ease-in-out box-shadow 0.2s;
}

.footer-element:hover{
    box-shadow: 0 0 40px black;
    transition: ease-in-out box-shadow 0.2s;
}

@media only screen and (max-width: 800px) {
    .footer-element{
        /* min-width: none; */
    }
}

.instagram-background{
    border-radius: 5px;
    background: #EDDD53;
    background: linear-gradient(117deg,rgba(237, 221, 83, 1) 0%, rgba(245, 177, 69, 1) 26%, rgba(227, 30, 43, 1) 72%, rgba(80, 42, 155, 1) 100%);
}

.mail-background{
    border-radius: 5px;
    background: #0f78d4;
    background: linear-gradient(127deg,rgba(15, 120, 212, 1) 0%, rgba(230, 247, 255, 1) 95%);
}

.footer-element-img{
    object-fit: cover;
    height: auto;
    width: 20px;
}

.footer-element-img > *{
    width: auto;
    height: 20px;
}

.footer-element-txt{
    color: black;
    font-family: Aerial;
    font-weight:bolder ;
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.skew{
    transform: skew(25deg);
}

.unskew{
    transform: skew(-25deg);
}