footer {
    width: 100%;
    height:200px;
    /* padding: 50px; */
    /*border: 1px solid black;*/
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgba(54,54,54,1) 0%, rgba(79,78,78,1) 38%, rgba(130,128,128,1) 100%);
    color:rgba(255, 255, 255, 0.79);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.must-have ul {
    list-style: none;
}

.must-have a {
    text-decoration: none;
    color: white;
}


.must-have a:hover {
    color: #D9641E;
} 


.footer-soc {
    width:290px;
    display: flex;
    justify-content: space-around;
}

.logo-img {
    width: 50px;
}

@media only screen and (max-width: 750px) {
    footer {
        flex-direction: column;
        justify-content: space-evenly;
    }
    
    .logo-img {
        width: 30px;
    }


}