.mid1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cursor{
    cursor: pointer;
}


.footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer i{
    font-size: 1.6rem;
    font-weight: 900;
    margin-left: 1rem;
    cursor: pointer;
}

.footer i:hover{
    color: black;
    transition: 0.6s ease;
}


@media(max-width:470px){
    .footer{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap-reverse;
        justify-content: center;
        align-items: center;
    }

    .footer i{
        margin-top: 20px;
    }
}